SaaSBindingRequest.php 311 B

1234567891011121314151617
  1. <?php
  2. class SaaSBindingRequest extends SdkRequest {
  3. const REQUEST_URL = "/saas/v2/binding";
  4. public function getUrl() {
  5. return self::REQUEST_URL;
  6. }
  7. public function getHttpParamers() {
  8. $httpParameters = HttpParameter::httpGetParamer();
  9. return $httpParameters;
  10. }
  11. }