12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace live\Request\V20161101;
- class ModifyLiveDomainSchdmByPropertyRequest extends \RpcAcsRequest
- {
-
- protected $method = 'POST';
-
- public function __construct()
- {
- parent::__construct(
- 'live',
- '2016-11-01',
- 'ModifyLiveDomainSchdmByProperty',
- 'live'
- );
- }
-
- public function setProperty($property)
- {
- $this->requestParameters['Property'] = $property;
- $this->queryParameters['Property'] = $property;
- return $this;
- }
-
- public function setDomainName($domainName)
- {
- $this->requestParameters['DomainName'] = $domainName;
- $this->queryParameters['DomainName'] = $domainName;
- return $this;
- }
-
- public function setOwnerId($ownerId)
- {
- $this->requestParameters['OwnerId'] = $ownerId;
- $this->queryParameters['OwnerId'] = $ownerId;
- return $this;
- }
- }
|