Files

72 lines
1.4 KiB
PHP

<?php
namespace ShaoZeMing\AliVod\SDK;
/**
* Request of PreloadVodObjectCaches
*
* @method string getSecurityToken()
* @method string getObjectPath()
* @method string getOwnerId()
*/
class PreloadVodObjectCachesRequest extends \ShaoZeMing\Aliyun\Core\RpcAcsRequest
{
/**
* @var string
*/
protected $method = 'POST';
/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'vod',
'2017-03-21',
'PreloadVodObjectCaches',
'vod'
);
}
/**
* @param string $securityToken
*
* @return $this
*/
public function setSecurityToken($securityToken)
{
$this->requestParameters['SecurityToken'] = $securityToken;
$this->queryParameters['SecurityToken'] = $securityToken;
return $this;
}
/**
* @param string $objectPath
*
* @return $this
*/
public function setObjectPath($objectPath)
{
$this->requestParameters['ObjectPath'] = $objectPath;
$this->queryParameters['ObjectPath'] = $objectPath;
return $this;
}
/**
* @param string $ownerId
*
* @return $this
*/
public function setOwnerId($ownerId)
{
$this->requestParameters['OwnerId'] = $ownerId;
$this->queryParameters['OwnerId'] = $ownerId;
return $this;
}
}