Files
amb_wechatapp/extend/aliyun-php-sdk/aliyun-php-sdk-vod/vod/Request/V20170321/DescribeVodDomainCertificateInfoRequest.php
T

60 lines
1.1 KiB
PHP

<?php
namespace vod\Request\V20170321;
/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of DescribeVodDomainCertificateInfo
*
* @method string getDomainName()
* @method string getOwnerId()
*/
class DescribeVodDomainCertificateInfoRequest extends \RpcAcsRequest
{
/**
* @var string
*/
protected $method = 'POST';
/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'vod',
'2017-03-21',
'DescribeVodDomainCertificateInfo',
'vod'
);
}
/**
* @param string $domainName
*
* @return $this
*/
public function setDomainName($domainName)
{
$this->requestParameters['DomainName'] = $domainName;
$this->queryParameters['DomainName'] = $domainName;
return $this;
}
/**
* @param string $ownerId
*
* @return $this
*/
public function setOwnerId($ownerId)
{
$this->requestParameters['OwnerId'] = $ownerId;
$this->queryParameters['OwnerId'] = $ownerId;
return $this;
}
}