123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- namespace live\Request\V20161101;
- /**
- * @deprecated Please use https://github.com/aliyun/openapi-sdk-php
- *
- * Request of ModifyCasterComponent
- *
- * @method string getComponentId()
- * @method string getComponentType()
- * @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 ModifyCasterComponentRequest extends \RpcAcsRequest
- {
- /**
- * @var string
- */
- protected $method = 'POST';
- /**
- * Class constructor.
- */
- public function __construct()
- {
- parent::__construct(
- 'live',
- '2016-11-01',
- 'ModifyCasterComponent',
- 'live'
- );
- }
- /**
- * @param string $componentId
- *
- * @return $this
- */
- public function setComponentId($componentId)
- {
- $this->requestParameters['ComponentId'] = $componentId;
- $this->queryParameters['ComponentId'] = $componentId;
- return $this;
- }
- /**
- * @param string $componentType
- *
- * @return $this
- */
- public function setComponentType($componentType)
- {
- $this->requestParameters['ComponentType'] = $componentType;
- $this->queryParameters['ComponentType'] = $componentType;
- 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;
- }
- }
|