130 lines
2.5 KiB
PHP
130 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace vod\Request\V20170321;
|
|
|
|
/**
|
|
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
|
|
*
|
|
* Request of DescribeVodDomainUsageData
|
|
*
|
|
* @method string getStartTime()
|
|
* @method string getType()
|
|
* @method string getArea()
|
|
* @method string getDomainName()
|
|
* @method string getEndTime()
|
|
* @method string getOwnerId()
|
|
* @method string getField()
|
|
*/
|
|
class DescribeVodDomainUsageDataRequest extends \RpcAcsRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $method = 'POST';
|
|
|
|
/**
|
|
* Class constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(
|
|
'vod',
|
|
'2017-03-21',
|
|
'DescribeVodDomainUsageData',
|
|
'vod'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $startTime
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setStartTime($startTime)
|
|
{
|
|
$this->requestParameters['StartTime'] = $startTime;
|
|
$this->queryParameters['StartTime'] = $startTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $type
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setType($type)
|
|
{
|
|
$this->requestParameters['Type'] = $type;
|
|
$this->queryParameters['Type'] = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $area
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setArea($area)
|
|
{
|
|
$this->requestParameters['Area'] = $area;
|
|
$this->queryParameters['Area'] = $area;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $domainName
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setDomainName($domainName)
|
|
{
|
|
$this->requestParameters['DomainName'] = $domainName;
|
|
$this->queryParameters['DomainName'] = $domainName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $endTime
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setEndTime($endTime)
|
|
{
|
|
$this->requestParameters['EndTime'] = $endTime;
|
|
$this->queryParameters['EndTime'] = $endTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $ownerId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setOwnerId($ownerId)
|
|
{
|
|
$this->requestParameters['OwnerId'] = $ownerId;
|
|
$this->queryParameters['OwnerId'] = $ownerId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $field
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setField($field)
|
|
{
|
|
$this->requestParameters['Field'] = $field;
|
|
$this->queryParameters['Field'] = $field;
|
|
|
|
return $this;
|
|
}
|
|
}
|