Supported ApproveOrder to add comment message.

This commit is contained in:
sdk-team
2020-10-12 07:07:42 +00:00
parent 11024b7871
commit a15ee90c20
3 changed files with 17 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
2020-10-12 Version: patch
- Supported ApproveOrder to add comment message.
2020-10-12 Version: patch
- Add list Organizations.

View File

@@ -37,6 +37,8 @@ namespace AlibabaCloud
std::string getApprovalType()const;
void setApprovalType(const std::string& approvalType);
std::string getComment()const;
void setComment(const std::string& comment);
long getTid()const;
void setTid(long tid);
long getWorkflowInstanceId()const;
@@ -44,6 +46,7 @@ namespace AlibabaCloud
private:
std::string approvalType_;
std::string comment_;
long tid_;
long workflowInstanceId_;

View File

@@ -38,6 +38,17 @@ void ApproveOrderRequest::setApprovalType(const std::string& approvalType)
setParameter("ApprovalType", approvalType);
}
std::string ApproveOrderRequest::getComment()const
{
return comment_;
}
void ApproveOrderRequest::setComment(const std::string& comment)
{
comment_ = comment;
setParameter("Comment", comment);
}
long ApproveOrderRequest::getTid()const
{
return tid_;