com.antgroup.antchain.openapi.ato.models.CancelSignFlowRequest 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 CancelSignFlowRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 签署合同单号
@NameInMap("sign_no")
@Validation(required = true)
public String signNo;
// 默认:“撤销”,最大长度50
@NameInMap("revoke_reason")
public String revokeReason;
// 发起人账户id,即发起本次签署的操作人个人账号id;如不传,默认由对接平台发起
@NameInMap("operator_id")
public String operatorId;
public static CancelSignFlowRequest build(java.util.Map map) throws Exception {
CancelSignFlowRequest self = new CancelSignFlowRequest();
return TeaModel.build(map, self);
}
public CancelSignFlowRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CancelSignFlowRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public CancelSignFlowRequest setSignNo(String signNo) {
this.signNo = signNo;
return this;
}
public String getSignNo() {
return this.signNo;
}
public CancelSignFlowRequest setRevokeReason(String revokeReason) {
this.revokeReason = revokeReason;
return this;
}
public String getRevokeReason() {
return this.revokeReason;
}
public CancelSignFlowRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy