Add CustomMessage to CreateMergeFaceGroupsJob.

This commit is contained in:
sdk-team
2021-04-27 03:15:10 +00:00
parent 3525d60729
commit ba63e32429
6 changed files with 27 additions and 10 deletions

View File

@@ -1,3 +1,6 @@
2021-04-27 Version: 1.36.699
- Add CustomMessage to CreateMergeFaceGroupsJob.
2021-04-26 Version: 1.36.698
- Generated 2019-06-01 for `smc`.

View File

@@ -1 +1 @@
1.36.698
1.36.699

File diff suppressed because one or more lines are too long

View File

@@ -41,6 +41,8 @@ namespace AlibabaCloud
void setAccessKeyId(const std::string& accessKeyId);
std::string getNotifyEndpoint()const;
void setNotifyEndpoint(const std::string& notifyEndpoint);
std::string getCustomMessage()const;
void setCustomMessage(const std::string& customMessage);
std::string getGroupIdFrom()const;
void setGroupIdFrom(const std::string& groupIdFrom);
std::string getNotifyTopicName()const;
@@ -54,6 +56,7 @@ namespace AlibabaCloud
std::string project_;
std::string accessKeyId_;
std::string notifyEndpoint_;
std::string customMessage_;
std::string groupIdFrom_;
std::string notifyTopicName_;
std::string groupIdTo_;

View File

@@ -60,6 +60,17 @@ void CreateMergeFaceGroupsJobRequest::setNotifyEndpoint(const std::string& notif
setParameter("NotifyEndpoint", notifyEndpoint);
}
std::string CreateMergeFaceGroupsJobRequest::getCustomMessage()const
{
return customMessage_;
}
void CreateMergeFaceGroupsJobRequest::setCustomMessage(const std::string& customMessage)
{
customMessage_ = customMessage;
setParameter("CustomMessage", customMessage);
}
std::string CreateMergeFaceGroupsJobRequest::getGroupIdFrom()const
{
return groupIdFrom_;

View File

@@ -39,16 +39,16 @@ void CreateMergeFaceGroupsJobResult::parse(const std::string &payload)
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
if(!value["JobId"].isNull())
jobId_ = value["JobId"].asString();
if(!value["SetId"].isNull())
setId_ = value["SetId"].asString();
if(!value["JobType"].isNull())
jobType_ = value["JobType"].asString();
if(!value["GroupIdTo"].isNull())
groupIdTo_ = value["GroupIdTo"].asString();
if(!value["GroupIdFrom"].isNull())
groupIdFrom_ = value["GroupIdFrom"].asString();
if(!value["JobType"].isNull())
jobType_ = value["JobType"].asString();
if(!value["SetId"].isNull())
setId_ = value["SetId"].asString();
if(!value["GroupIdTo"].isNull())
groupIdTo_ = value["GroupIdTo"].asString();
if(!value["JobId"].isNull())
jobId_ = value["JobId"].asString();
}