123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- namespace live\Request\V20161101;
- class ModifyCasterComponentRequest extends \RpcAcsRequest
- {
-
- protected $method = 'POST';
-
- public function __construct()
- {
- parent::__construct(
- 'live',
- '2016-11-01',
- 'ModifyCasterComponent',
- 'live'
- );
- }
-
- public function setComponentId($componentId)
- {
- $this->requestParameters['ComponentId'] = $componentId;
- $this->queryParameters['ComponentId'] = $componentId;
- return $this;
- }
-
- public function setComponentType($componentType)
- {
- $this->requestParameters['ComponentType'] = $componentType;
- $this->queryParameters['ComponentType'] = $componentType;
- return $this;
- }
-
- public function setImageLayerContent($imageLayerContent)
- {
- $this->requestParameters['ImageLayerContent'] = $imageLayerContent;
- $this->queryParameters['ImageLayerContent'] = $imageLayerContent;
- return $this;
- }
-
- public function setCasterId($casterId)
- {
- $this->requestParameters['CasterId'] = $casterId;
- $this->queryParameters['CasterId'] = $casterId;
- return $this;
- }
-
- public function setEffect($effect)
- {
- $this->requestParameters['Effect'] = $effect;
- $this->queryParameters['Effect'] = $effect;
- return $this;
- }
-
- public function setComponentLayer($componentLayer)
- {
- $this->requestParameters['ComponentLayer'] = $componentLayer;
- $this->queryParameters['ComponentLayer'] = $componentLayer;
- return $this;
- }
-
- public function setCaptionLayerContent($captionLayerContent)
- {
- $this->requestParameters['CaptionLayerContent'] = $captionLayerContent;
- $this->queryParameters['CaptionLayerContent'] = $captionLayerContent;
- return $this;
- }
-
- public function setComponentName($componentName)
- {
- $this->requestParameters['ComponentName'] = $componentName;
- $this->queryParameters['ComponentName'] = $componentName;
- return $this;
- }
-
- public function setOwnerId($ownerId)
- {
- $this->requestParameters['OwnerId'] = $ownerId;
- $this->queryParameters['OwnerId'] = $ownerId;
- return $this;
- }
-
- public function setTextLayerContent($textLayerContent)
- {
- $this->requestParameters['TextLayerContent'] = $textLayerContent;
- $this->queryParameters['TextLayerContent'] = $textLayerContent;
- return $this;
- }
- }
|