com.antgroup.antchain.openapi.ato.models.AuthFundFlowRequest 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 AuthFundFlowRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 订单所属商户的统一社会信用代码
@NameInMap("merchant_id")
@Validation(required = true)
public String merchantId;
// 商户的订单号
@NameInMap("order_id")
@Validation(required = true)
public String orderId;
// 签署的电子合同ID
@NameInMap("sign_no")
@Validation(required = true)
public String signNo;
// 签署区域的tag,和发起签署流程的机构的tag对应
@NameInMap("tag")
@Validation(required = true)
public String tag;
public static AuthFundFlowRequest build(java.util.Map map) throws Exception {
AuthFundFlowRequest self = new AuthFundFlowRequest();
return TeaModel.build(map, self);
}
public AuthFundFlowRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public AuthFundFlowRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public AuthFundFlowRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public AuthFundFlowRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public AuthFundFlowRequest setSignNo(String signNo) {
this.signNo = signNo;
return this;
}
public String getSignNo() {
return this.signNo;
}
public AuthFundFlowRequest setTag(String tag) {
this.tag = tag;
return this;
}
public String getTag() {
return this.tag;
}
}