| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef ALIBABACLOUD_RTC_MODEL_STARTMPUTASKREQUEST_H_
- #define ALIBABACLOUD_RTC_MODEL_STARTMPUTASKREQUEST_H_
- #include <string>
- #include <vector>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <alibabacloud/rtc/RtcExport.h>
- namespace AlibabaCloud
- {
- namespace Rtc
- {
- namespace Model
- {
- class ALIBABACLOUD_RTC_EXPORT StartMPUTaskRequest : public RpcServiceRequest
- {
- struct UserPanes
- {
- int paneId;
- std::string userId;
- std::string sourceType;
- };
- public:
- StartMPUTaskRequest();
- ~StartMPUTaskRequest();
- long getResourceOwnerId()const;
- void setResourceOwnerId(long resourceOwnerId);
- std::vector<UserPanes> getUserPanes()const;
- void setUserPanes(const std::vector<UserPanes>& userPanes);
- long getCallerParentId()const;
- void setCallerParentId(long callerParentId);
- bool getProxy_original_security_transport()const;
- void setProxy_original_security_transport(bool proxy_original_security_transport);
- std::string getProxy_original_source_ip()const;
- void setProxy_original_source_ip(const std::string& proxy_original_source_ip);
- std::string getOwnerIdLoginEmail()const;
- void setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail);
- std::string getCallerType()const;
- void setCallerType(const std::string& callerType);
- std::string getAccessKeyId()const;
- void setAccessKeyId(const std::string& accessKeyId);
- int getBackgroundColor()const;
- void setBackgroundColor(int backgroundColor);
- std::string getSecurityToken()const;
- void setSecurityToken(const std::string& securityToken);
- std::string getRequestContent()const;
- void setRequestContent(const std::string& requestContent);
- std::string getCallerBidEmail()const;
- void setCallerBidEmail(const std::string& callerBidEmail);
- std::vector<long> getLayoutIds()const;
- void setLayoutIds(const std::vector<long>& layoutIds);
- std::string getCallerUidEmail()const;
- void setCallerUidEmail(const std::string& callerUidEmail);
- std::string getTaskId()const;
- void setTaskId(const std::string& taskId);
- long getCallerUid()const;
- void setCallerUid(long callerUid);
- std::string getStreamURL()const;
- void setStreamURL(const std::string& streamURL);
- std::string getApp_ip()const;
- void setApp_ip(const std::string& app_ip);
- std::string getPopProduct()const;
- void setPopProduct(const std::string& popProduct);
- std::string getCallerBid()const;
- void setCallerBid(const std::string& callerBid);
- long getOwnerId()const;
- void setOwnerId(long ownerId);
- std::string getVersion()const;
- void setVersion(const std::string& version);
- bool getProxy_trust_transport_info()const;
- void setProxy_trust_transport_info(bool proxy_trust_transport_info);
- bool getAk_mfa_present()const;
- void setAk_mfa_present(bool ak_mfa_present);
- bool getSecurity_transport()const;
- void setSecurity_transport(bool security_transport);
- std::string getRequestId()const;
- void setRequestId(const std::string& requestId);
- std::string getAppId()const;
- void setAppId(const std::string& appId);
- int getMediaEncode()const;
- void setMediaEncode(int mediaEncode);
- std::string getChannelId()const;
- void setChannelId(const std::string& channelId);
- private:
- long resourceOwnerId_;
- std::vector<UserPanes> userPanes_;
- long callerParentId_;
- bool proxy_original_security_transport_;
- std::string proxy_original_source_ip_;
- std::string ownerIdLoginEmail_;
- std::string callerType_;
- std::string accessKeyId_;
- int backgroundColor_;
- std::string securityToken_;
- std::string requestContent_;
- std::string callerBidEmail_;
- std::vector<long> layoutIds_;
- std::string callerUidEmail_;
- std::string taskId_;
- long callerUid_;
- std::string streamURL_;
- std::string app_ip_;
- std::string popProduct_;
- std::string callerBid_;
- long ownerId_;
- std::string version_;
- bool proxy_trust_transport_info_;
- bool ak_mfa_present_;
- bool security_transport_;
- std::string requestId_;
- std::string appId_;
- int mediaEncode_;
- std::string channelId_;
- };
- }
- }
- }
- #endif // !ALIBABACLOUD_RTC_MODEL_STARTMPUTASKREQUEST_H_
|