12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace live\Request\V20161101;
- class CreateBoardRequest extends \RpcAcsRequest
- {
-
- protected $method = 'POST';
-
- public function __construct()
- {
- parent::__construct(
- 'live',
- '2016-11-01',
- 'CreateBoard',
- 'live'
- );
- }
-
- public function setAppUid($appUid)
- {
- $this->requestParameters['AppUid'] = $appUid;
- $this->queryParameters['AppUid'] = $appUid;
- return $this;
- }
-
- public function setOwnerId($ownerId)
- {
- $this->requestParameters['OwnerId'] = $ownerId;
- $this->queryParameters['OwnerId'] = $ownerId;
- return $this;
- }
-
- public function setAppId($appId)
- {
- $this->requestParameters['AppId'] = $appId;
- $this->queryParameters['AppId'] = $appId;
- return $this;
- }
- }
|