com.antgroup.antchain.openapi.ato.models.CreateInnerInsuresignRequest 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 CreateInnerInsuresignRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 商户租户id
@NameInMap("merchant_tenant_id")
@Validation(required = true)
public String merchantTenantId;
// 外部代扣协议号
@NameInMap("external_agreement_no")
@Validation(required = true)
public String externalAgreementNo;
public static CreateInnerInsuresignRequest build(java.util.Map map) throws Exception {
CreateInnerInsuresignRequest self = new CreateInnerInsuresignRequest();
return TeaModel.build(map, self);
}
public CreateInnerInsuresignRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CreateInnerInsuresignRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public CreateInnerInsuresignRequest setMerchantTenantId(String merchantTenantId) {
this.merchantTenantId = merchantTenantId;
return this;
}
public String getMerchantTenantId() {
return this.merchantTenantId;
}
public CreateInnerInsuresignRequest setExternalAgreementNo(String externalAgreementNo) {
this.externalAgreementNo = externalAgreementNo;
return this;
}
public String getExternalAgreementNo() {
return this.externalAgreementNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy