* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace vod\Request\V20170321; class SearchEditingProjectRequest extends \RpcAcsRequest { public function __construct() { parent::__construct('vod', '2017-03-21', 'SearchEditingProject', 'vod', 'openAPI'); $this->setMethod('POST'); } private $resourceOwnerId; private $resourceOwnerAccount; private $ownerAccount; private $endTime; private $startTime; private $ownerId; private $title; private $pageNo; private $pageSize; private $sortBy; private $status; public function getResourceOwnerId() { return $this->resourceOwnerId; } public function setResourceOwnerId($resourceOwnerId) { $this->resourceOwnerId = $resourceOwnerId; $this->queryParameters['ResourceOwnerId'] = $resourceOwnerId; } public function getResourceOwnerAccount() { return $this->resourceOwnerAccount; } public function setResourceOwnerAccount($resourceOwnerAccount) { $this->resourceOwnerAccount = $resourceOwnerAccount; $this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount; } public function getOwnerAccount() { return $this->ownerAccount; } public function setOwnerAccount($ownerAccount) { $this->ownerAccount = $ownerAccount; $this->queryParameters['OwnerAccount'] = $ownerAccount; } public function getEndTime() { return $this->endTime; } public function setEndTime($endTime) { $this->endTime = $endTime; $this->queryParameters['EndTime'] = $endTime; } public function getStartTime() { return $this->startTime; } public function setStartTime($startTime) { $this->startTime = $startTime; $this->queryParameters['StartTime'] = $startTime; } public function getOwnerId() { return $this->ownerId; } public function setOwnerId($ownerId) { $this->ownerId = $ownerId; $this->queryParameters['OwnerId'] = $ownerId; } public function getTitle() { return $this->title; } public function setTitle($title) { $this->title = $title; $this->queryParameters['Title'] = $title; } public function getPageNo() { return $this->pageNo; } public function setPageNo($pageNo) { $this->pageNo = $pageNo; $this->queryParameters['PageNo'] = $pageNo; } public function getPageSize() { return $this->pageSize; } public function setPageSize($pageSize) { $this->pageSize = $pageSize; $this->queryParameters['PageSize'] = $pageSize; } public function getSortBy() { return $this->sortBy; } public function setSortBy($sortBy) { $this->sortBy = $sortBy; $this->queryParameters['SortBy'] = $sortBy; } public function getStatus() { return $this->status; } public function setStatus($status) { $this->status = $status; $this->queryParameters['Status'] = $status; } }