AddCasterComponentRequest.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_LIVE_MODEL_ADDCASTERCOMPONENTREQUEST_H_
  17. #define ALIBABACLOUD_LIVE_MODEL_ADDCASTERCOMPONENTREQUEST_H_
  18. #include <alibabacloud/live/LiveExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Live {
  25. namespace Model {
  26. class ALIBABACLOUD_LIVE_EXPORT AddCasterComponentRequest : public RpcServiceRequest {
  27. public:
  28. AddCasterComponentRequest();
  29. ~AddCasterComponentRequest();
  30. std::string getHtmlLayerContent() const;
  31. void setHtmlLayerContent(const std::string &htmlLayerContent);
  32. std::string getImageLayerContent() const;
  33. void setImageLayerContent(const std::string &imageLayerContent);
  34. std::string getComponentName() const;
  35. void setComponentName(const std::string &componentName);
  36. std::string getRegionId() const;
  37. void setRegionId(const std::string &regionId);
  38. std::string getLayerOrder() const;
  39. void setLayerOrder(const std::string &layerOrder);
  40. std::string getCasterId() const;
  41. void setCasterId(const std::string &casterId);
  42. std::string getComponentLayer() const;
  43. void setComponentLayer(const std::string &componentLayer);
  44. long getOwnerId() const;
  45. void setOwnerId(long ownerId);
  46. std::string getComponentType() const;
  47. void setComponentType(const std::string &componentType);
  48. std::string getLocationId() const;
  49. void setLocationId(const std::string &locationId);
  50. std::string getEffect() const;
  51. void setEffect(const std::string &effect);
  52. std::string getCaptionLayerContent() const;
  53. void setCaptionLayerContent(const std::string &captionLayerContent);
  54. std::string getTextLayerContent() const;
  55. void setTextLayerContent(const std::string &textLayerContent);
  56. private:
  57. std::string htmlLayerContent_;
  58. std::string imageLayerContent_;
  59. std::string componentName_;
  60. std::string regionId_;
  61. std::string layerOrder_;
  62. std::string casterId_;
  63. std::string componentLayer_;
  64. long ownerId_;
  65. std::string componentType_;
  66. std::string locationId_;
  67. std::string effect_;
  68. std::string captionLayerContent_;
  69. std::string textLayerContent_;
  70. };
  71. } // namespace Model
  72. } // namespace Live
  73. } // namespace AlibabaCloud
  74. #endif // !ALIBABACLOUD_LIVE_MODEL_ADDCASTERCOMPONENTREQUEST_H_