88 lines
1.6 KiB
PHP
88 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace ShaoZeMing\AliVod\SDK;
|
|
|
|
use ShaoZeMing\Aliyun\Core\RpcAcsRequest;
|
|
|
|
/**
|
|
* Request of GetAuditHistory
|
|
*
|
|
* @method string getPageNo()
|
|
* @method string getPageSize()
|
|
* @method string getVideoId()
|
|
* @method string getSortBy()
|
|
*/
|
|
class GetAuditHistoryRequest extends RpcAcsRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $method = 'POST';
|
|
|
|
/**
|
|
* Class constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(
|
|
'vod',
|
|
'2017-03-21',
|
|
'GetAuditHistory',
|
|
'vod'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $pageNo
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setPageNo($pageNo)
|
|
{
|
|
$this->requestParameters['PageNo'] = $pageNo;
|
|
$this->queryParameters['PageNo'] = $pageNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $pageSize
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setPageSize($pageSize)
|
|
{
|
|
$this->requestParameters['PageSize'] = $pageSize;
|
|
$this->queryParameters['PageSize'] = $pageSize;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $videoId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setVideoId($videoId)
|
|
{
|
|
$this->requestParameters['VideoId'] = $videoId;
|
|
$this->queryParameters['VideoId'] = $videoId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $sortBy
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setSortBy($sortBy)
|
|
{
|
|
$this->requestParameters['SortBy'] = $sortBy;
|
|
$this->queryParameters['SortBy'] = $sortBy;
|
|
|
|
return $this;
|
|
}
|
|
}
|