You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
3.8 KiB
171 lines
3.8 KiB
<?php
|
|
|
|
namespace live\Request\V20161101;
|
|
|
|
/**
|
|
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
|
|
*
|
|
* Request of AddCasterComponent
|
|
*
|
|
* @method string getComponentType()
|
|
* @method string getLocationId()
|
|
* @method string getImageLayerContent()
|
|
* @method string getCasterId()
|
|
* @method string getEffect()
|
|
* @method string getComponentLayer()
|
|
* @method string getCaptionLayerContent()
|
|
* @method string getComponentName()
|
|
* @method string getOwnerId()
|
|
* @method string getTextLayerContent()
|
|
*/
|
|
class AddCasterComponentRequest extends \RpcAcsRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $method = 'POST';
|
|
|
|
/**
|
|
* Class constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(
|
|
'live',
|
|
'2016-11-01',
|
|
'AddCasterComponent',
|
|
'live'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $componentType
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setComponentType($componentType)
|
|
{
|
|
$this->requestParameters['ComponentType'] = $componentType;
|
|
$this->queryParameters['ComponentType'] = $componentType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $locationId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setLocationId($locationId)
|
|
{
|
|
$this->requestParameters['LocationId'] = $locationId;
|
|
$this->queryParameters['LocationId'] = $locationId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $imageLayerContent
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setImageLayerContent($imageLayerContent)
|
|
{
|
|
$this->requestParameters['ImageLayerContent'] = $imageLayerContent;
|
|
$this->queryParameters['ImageLayerContent'] = $imageLayerContent;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $casterId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setCasterId($casterId)
|
|
{
|
|
$this->requestParameters['CasterId'] = $casterId;
|
|
$this->queryParameters['CasterId'] = $casterId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $effect
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setEffect($effect)
|
|
{
|
|
$this->requestParameters['Effect'] = $effect;
|
|
$this->queryParameters['Effect'] = $effect;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $componentLayer
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setComponentLayer($componentLayer)
|
|
{
|
|
$this->requestParameters['ComponentLayer'] = $componentLayer;
|
|
$this->queryParameters['ComponentLayer'] = $componentLayer;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $captionLayerContent
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setCaptionLayerContent($captionLayerContent)
|
|
{
|
|
$this->requestParameters['CaptionLayerContent'] = $captionLayerContent;
|
|
$this->queryParameters['CaptionLayerContent'] = $captionLayerContent;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $componentName
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setComponentName($componentName)
|
|
{
|
|
$this->requestParameters['ComponentName'] = $componentName;
|
|
$this->queryParameters['ComponentName'] = $componentName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $ownerId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setOwnerId($ownerId)
|
|
{
|
|
$this->requestParameters['OwnerId'] = $ownerId;
|
|
$this->queryParameters['OwnerId'] = $ownerId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $textLayerContent
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setTextLayerContent($textLayerContent)
|
|
{
|
|
$this->requestParameters['TextLayerContent'] = $textLayerContent;
|
|
$this->queryParameters['TextLayerContent'] = $textLayerContent;
|
|
|
|
return $this;
|
|
}
|
|
}
|
|
|