Supported ApproveOrder to add comment message.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2020-10-12 Version: patch
|
||||
- Supported ApproveOrder to add comment message.
|
||||
|
||||
2020-10-12 Version: patch
|
||||
- Add list Organizations.
|
||||
|
||||
|
||||
@@ -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_;
|
||||
|
||||
|
||||
@@ -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_;
|
||||
|
||||
Reference in New Issue
Block a user