12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace live\Request\V20161101;
- /**
- * @deprecated Please use https://github.com/aliyun/openapi-sdk-php
- *
- * Request of StopLiveDomain
- *
- * @method string getSecurityToken()
- * @method string getDomainName()
- * @method string getOwnerId()
- */
- class StopLiveDomainRequest extends \RpcAcsRequest
- {
- /**
- * @var string
- */
- protected $method = 'POST';
- /**
- * Class constructor.
- */
- public function __construct()
- {
- parent::__construct(
- 'live',
- '2016-11-01',
- 'StopLiveDomain',
- 'live'
- );
- }
- /**
- * @param string $securityToken
- *
- * @return $this
- */
- public function setSecurityToken($securityToken)
- {
- $this->requestParameters['SecurityToken'] = $securityToken;
- $this->queryParameters['SecurityToken'] = $securityToken;
- return $this;
- }
- /**
- * @param string $domainName
- *
- * @return $this
- */
- public function setDomainName($domainName)
- {
- $this->requestParameters['DomainName'] = $domainName;
- $this->queryParameters['DomainName'] = $domainName;
- return $this;
- }
- /**
- * @param string $ownerId
- *
- * @return $this
- */
- public function setOwnerId($ownerId)
- {
- $this->requestParameters['OwnerId'] = $ownerId;
- $this->queryParameters['OwnerId'] = $ownerId;
- return $this;
- }
- }
|