com.antgroup.antchain.openapi.ato.models.SubmitFrontSignResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class SubmitFrontSignResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 签署合同单号
//
@NameInMap("sign_no")
public String signNo;
// 电子签署流程ID
//
@NameInMap("flow_id")
public String flowId;
// 签署用户ID
//
@NameInMap("account_id")
public String accountId;
// 签署扩展信息,用于获取签署链接等。JSON格式字符串。
@NameInMap("sign_info")
public String signInfo;
public static SubmitFrontSignResponse build(java.util.Map map) throws Exception {
SubmitFrontSignResponse self = new SubmitFrontSignResponse();
return TeaModel.build(map, self);
}
public SubmitFrontSignResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public SubmitFrontSignResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public SubmitFrontSignResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public SubmitFrontSignResponse setSignNo(String signNo) {
this.signNo = signNo;
return this;
}
public String getSignNo() {
return this.signNo;
}
public SubmitFrontSignResponse setFlowId(String flowId) {
this.flowId = flowId;
return this;
}
public String getFlowId() {
return this.flowId;
}
public SubmitFrontSignResponse setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public SubmitFrontSignResponse setSignInfo(String signInfo) {
this.signInfo = signInfo;
return this;
}
public String getSignInfo() {
return this.signInfo;
}
}