Export StartBack2BackCall API.
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
2021-04-19 Version: 1.36.688
|
||||||
|
- Export StartBack2BackCall API.
|
||||||
|
|
||||||
2021-04-19 Version: 1.36.687
|
2021-04-19 Version: 1.36.687
|
||||||
- Generated 2020-10-29 for `reid_cloud`.
|
- Generated 2020-10-29 for `reid_cloud`.
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,8 @@ namespace AlibabaCloud
|
|||||||
void setBroker(const std::string& broker);
|
void setBroker(const std::string& broker);
|
||||||
std::string getUserId()const;
|
std::string getUserId()const;
|
||||||
void setUserId(const std::string& userId);
|
void setUserId(const std::string& userId);
|
||||||
|
std::string getDeviceId()const;
|
||||||
|
void setDeviceId(const std::string& deviceId);
|
||||||
std::string getAdditionalBroker()const;
|
std::string getAdditionalBroker()const;
|
||||||
void setAdditionalBroker(const std::string& additionalBroker);
|
void setAdditionalBroker(const std::string& additionalBroker);
|
||||||
std::string getTags()const;
|
std::string getTags()const;
|
||||||
@@ -56,6 +58,7 @@ namespace AlibabaCloud
|
|||||||
std::string callee_;
|
std::string callee_;
|
||||||
std::string broker_;
|
std::string broker_;
|
||||||
std::string userId_;
|
std::string userId_;
|
||||||
|
std::string deviceId_;
|
||||||
std::string additionalBroker_;
|
std::string additionalBroker_;
|
||||||
std::string tags_;
|
std::string tags_;
|
||||||
int timeoutSeconds_;
|
int timeoutSeconds_;
|
||||||
|
|||||||
@@ -60,6 +60,17 @@ void StartBack2BackCallRequest::setUserId(const std::string& userId)
|
|||||||
setParameter("UserId", userId);
|
setParameter("UserId", userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string StartBack2BackCallRequest::getDeviceId()const
|
||||||
|
{
|
||||||
|
return deviceId_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void StartBack2BackCallRequest::setDeviceId(const std::string& deviceId)
|
||||||
|
{
|
||||||
|
deviceId_ = deviceId;
|
||||||
|
setParameter("DeviceId", deviceId);
|
||||||
|
}
|
||||||
|
|
||||||
std::string StartBack2BackCallRequest::getAdditionalBroker()const
|
std::string StartBack2BackCallRequest::getAdditionalBroker()const
|
||||||
{
|
{
|
||||||
return additionalBroker_;
|
return additionalBroker_;
|
||||||
|
|||||||
Reference in New Issue
Block a user