com.antgroup.antchain.openapi.ato.models.SyncFundWithholdingcontractRequest 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 SyncFundWithholdingcontractRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 订单号
@NameInMap("order_id")
@Validation(required = true, maxLength = 50, minLength = 1)
public String orderId;
// 商家在数科注册的租户id
@NameInMap("merchant_tenant_id")
@Validation(required = true, maxLength = 50, minLength = 1)
public String merchantTenantId;
// 代扣协议号
@NameInMap("withholding_contract_id")
@Validation(required = true, maxLength = 100, minLength = 1)
public String withholdingContractId;
// json的字符串,存储额外信息
@NameInMap("extra_info")
public String extraInfo;
// 签署状态:
// - ACCEPT : 接受
// - REFUSE : 拒绝
// - TIMEOUT : 超时
@NameInMap("status")
@Validation(required = true)
public String status;
public static SyncFundWithholdingcontractRequest build(java.util.Map map) throws Exception {
SyncFundWithholdingcontractRequest self = new SyncFundWithholdingcontractRequest();
return TeaModel.build(map, self);
}
public SyncFundWithholdingcontractRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public SyncFundWithholdingcontractRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public SyncFundWithholdingcontractRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public SyncFundWithholdingcontractRequest setMerchantTenantId(String merchantTenantId) {
this.merchantTenantId = merchantTenantId;
return this;
}
public String getMerchantTenantId() {
return this.merchantTenantId;
}
public SyncFundWithholdingcontractRequest setWithholdingContractId(String withholdingContractId) {
this.withholdingContractId = withholdingContractId;
return this;
}
public String getWithholdingContractId() {
return this.withholdingContractId;
}
public SyncFundWithholdingcontractRequest setExtraInfo(String extraInfo) {
this.extraInfo = extraInfo;
return this;
}
public String getExtraInfo() {
return this.extraInfo;
}
public SyncFundWithholdingcontractRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy