Generated 2022-01-30 for avatar.
This commit is contained in:
@@ -41,6 +41,8 @@ public:
|
||||
void setApp(const std::string &app);
|
||||
long getTenantId() const;
|
||||
void setTenantId(long tenantId);
|
||||
std::string getBizId() const;
|
||||
void setBizId(const std::string &bizId);
|
||||
Channel getChannel() const;
|
||||
void setChannel(const Channel &channel);
|
||||
CommandRequest getCommandRequest() const;
|
||||
@@ -51,6 +53,7 @@ public:
|
||||
private:
|
||||
std::string app_;
|
||||
long tenantId_;
|
||||
std::string bizId_;
|
||||
Channel channel_;
|
||||
CommandRequest commandRequest_;
|
||||
std::string user_;
|
||||
|
||||
@@ -43,6 +43,15 @@ void StartInstanceRequest::setTenantId(long tenantId) {
|
||||
setParameter(std::string("TenantId"), std::to_string(tenantId));
|
||||
}
|
||||
|
||||
std::string StartInstanceRequest::getBizId() const {
|
||||
return bizId_;
|
||||
}
|
||||
|
||||
void StartInstanceRequest::setBizId(const std::string &bizId) {
|
||||
bizId_ = bizId;
|
||||
setParameter(std::string("BizId"), bizId);
|
||||
}
|
||||
|
||||
StartInstanceRequest::Channel StartInstanceRequest::getChannel() const {
|
||||
return channel_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user