123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace live\Request\V20161101;
- class DescribeLiveStreamCountRequest extends \RpcAcsRequest
- {
-
- public function __construct()
- {
- parent::__construct(
- 'live',
- '2016-11-01',
- 'DescribeLiveStreamCount',
- 'live'
- );
- }
-
- 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;
- }
- }
|