<?php
namespace vod\Request\V20170321;
class DescribeRefreshTasksRequest extends \RpcAcsRequest
{
function __construct()
{
parent::__construct("vod", "2017-03-21", "DescribeRefreshTasks", "vod", "openAPI");
$this->setMethod("POST");
}
private $resourceOwnerId;
private $resourceOwnerAccount;
private $ownerAccount;
private $objectPath;
private $domainName;
private $endTime;
private $startTime;
private $ownerId;
private $pageNumber;
private $pageSize;
private $objectType;
private $taskId;
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 getObjectPath() {
return $this->objectPath;
}
public function setObjectPath($objectPath) {
$this->objectPath = $objectPath;
$this->queryParameters["ObjectPath"]=$objectPath;
}
public function getDomainName() {
return $this->domainName;
}
public function setDomainName($domainName) {
$this->domainName = $domainName;
$this->queryParameters["DomainName"]=$domainName;
}
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 getPageNumber() {
return $this->pageNumber;
}
public function setPageNumber($pageNumber) {
$this->pageNumber = $pageNumber;
$this->queryParameters["PageNumber"]=$pageNumber;
}
public function getPageSize() {
return $this->pageSize;
}
public function setPageSize($pageSize) {
$this->pageSize = $pageSize;
$this->queryParameters["PageSize"]=$pageSize;
}
public function getObjectType() {
return $this->objectType;
}
public function setObjectType($objectType) {
$this->objectType = $objectType;
$this->queryParameters["ObjectType"]=$objectType;
}
public function getTaskId() {
return $this->taskId;
}
public function setTaskId($taskId) {
$this->taskId = $taskId;
$this->queryParameters["TaskId"]=$taskId;
}
public function getStatus() {
return $this->status;
}
public function setStatus($status) {
$this->status = $status;
$this->queryParameters["Status"]=$status;
}
}