StartMPUTaskRequest.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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_RTC_MODEL_STARTMPUTASKREQUEST_H_
  17. #define ALIBABACLOUD_RTC_MODEL_STARTMPUTASKREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/rtc/RtcExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Rtc
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_RTC_EXPORT StartMPUTaskRequest : public RpcServiceRequest
  29. {
  30. struct UserPanes
  31. {
  32. int paneId;
  33. std::string userId;
  34. std::string sourceType;
  35. };
  36. public:
  37. StartMPUTaskRequest();
  38. ~StartMPUTaskRequest();
  39. long getResourceOwnerId()const;
  40. void setResourceOwnerId(long resourceOwnerId);
  41. std::vector<UserPanes> getUserPanes()const;
  42. void setUserPanes(const std::vector<UserPanes>& userPanes);
  43. long getCallerParentId()const;
  44. void setCallerParentId(long callerParentId);
  45. bool getProxy_original_security_transport()const;
  46. void setProxy_original_security_transport(bool proxy_original_security_transport);
  47. std::string getProxy_original_source_ip()const;
  48. void setProxy_original_source_ip(const std::string& proxy_original_source_ip);
  49. std::string getOwnerIdLoginEmail()const;
  50. void setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail);
  51. std::string getCallerType()const;
  52. void setCallerType(const std::string& callerType);
  53. std::string getAccessKeyId()const;
  54. void setAccessKeyId(const std::string& accessKeyId);
  55. int getBackgroundColor()const;
  56. void setBackgroundColor(int backgroundColor);
  57. std::string getSecurityToken()const;
  58. void setSecurityToken(const std::string& securityToken);
  59. std::string getRequestContent()const;
  60. void setRequestContent(const std::string& requestContent);
  61. std::string getCallerBidEmail()const;
  62. void setCallerBidEmail(const std::string& callerBidEmail);
  63. std::vector<long> getLayoutIds()const;
  64. void setLayoutIds(const std::vector<long>& layoutIds);
  65. std::string getCallerUidEmail()const;
  66. void setCallerUidEmail(const std::string& callerUidEmail);
  67. std::string getTaskId()const;
  68. void setTaskId(const std::string& taskId);
  69. long getCallerUid()const;
  70. void setCallerUid(long callerUid);
  71. std::string getStreamURL()const;
  72. void setStreamURL(const std::string& streamURL);
  73. std::string getApp_ip()const;
  74. void setApp_ip(const std::string& app_ip);
  75. std::string getPopProduct()const;
  76. void setPopProduct(const std::string& popProduct);
  77. std::string getCallerBid()const;
  78. void setCallerBid(const std::string& callerBid);
  79. long getOwnerId()const;
  80. void setOwnerId(long ownerId);
  81. std::string getVersion()const;
  82. void setVersion(const std::string& version);
  83. bool getProxy_trust_transport_info()const;
  84. void setProxy_trust_transport_info(bool proxy_trust_transport_info);
  85. bool getAk_mfa_present()const;
  86. void setAk_mfa_present(bool ak_mfa_present);
  87. bool getSecurity_transport()const;
  88. void setSecurity_transport(bool security_transport);
  89. std::string getRequestId()const;
  90. void setRequestId(const std::string& requestId);
  91. std::string getAppId()const;
  92. void setAppId(const std::string& appId);
  93. int getMediaEncode()const;
  94. void setMediaEncode(int mediaEncode);
  95. std::string getChannelId()const;
  96. void setChannelId(const std::string& channelId);
  97. private:
  98. long resourceOwnerId_;
  99. std::vector<UserPanes> userPanes_;
  100. long callerParentId_;
  101. bool proxy_original_security_transport_;
  102. std::string proxy_original_source_ip_;
  103. std::string ownerIdLoginEmail_;
  104. std::string callerType_;
  105. std::string accessKeyId_;
  106. int backgroundColor_;
  107. std::string securityToken_;
  108. std::string requestContent_;
  109. std::string callerBidEmail_;
  110. std::vector<long> layoutIds_;
  111. std::string callerUidEmail_;
  112. std::string taskId_;
  113. long callerUid_;
  114. std::string streamURL_;
  115. std::string app_ip_;
  116. std::string popProduct_;
  117. std::string callerBid_;
  118. long ownerId_;
  119. std::string version_;
  120. bool proxy_trust_transport_info_;
  121. bool ak_mfa_present_;
  122. bool security_transport_;
  123. std::string requestId_;
  124. std::string appId_;
  125. int mediaEncode_;
  126. std::string channelId_;
  127. };
  128. }
  129. }
  130. }
  131. #endif // !ALIBABACLOUD_RTC_MODEL_STARTMPUTASKREQUEST_H_