com.antgroup.antchain.openapi.ato.models.UpdateMerchantexpandMerchantRequest 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 UpdateMerchantexpandMerchantRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 公司信息
@NameInMap("company_info")
@Validation(required = true)
public CompanyInfoUpdate companyInfo;
// 法人信息
@NameInMap("legal_info")
@Validation(required = true)
public LegalInfoUpdate legalInfo;
// 应用信息
@NameInMap("application_info")
@Validation(required = true)
public ApplicationInfoUpdate applicationInfo;
// 进件流水号
@NameInMap("pay_expand_id")
@Validation(required = true)
public String payExpandId;
// 社会统一信用代码
@NameInMap("merchant_id")
@Validation(required = true)
public String merchantId;
public static UpdateMerchantexpandMerchantRequest build(java.util.Map map) throws Exception {
UpdateMerchantexpandMerchantRequest self = new UpdateMerchantexpandMerchantRequest();
return TeaModel.build(map, self);
}
public UpdateMerchantexpandMerchantRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public UpdateMerchantexpandMerchantRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public UpdateMerchantexpandMerchantRequest setCompanyInfo(CompanyInfoUpdate companyInfo) {
this.companyInfo = companyInfo;
return this;
}
public CompanyInfoUpdate getCompanyInfo() {
return this.companyInfo;
}
public UpdateMerchantexpandMerchantRequest setLegalInfo(LegalInfoUpdate legalInfo) {
this.legalInfo = legalInfo;
return this;
}
public LegalInfoUpdate getLegalInfo() {
return this.legalInfo;
}
public UpdateMerchantexpandMerchantRequest setApplicationInfo(ApplicationInfoUpdate applicationInfo) {
this.applicationInfo = applicationInfo;
return this;
}
public ApplicationInfoUpdate getApplicationInfo() {
return this.applicationInfo;
}
public UpdateMerchantexpandMerchantRequest setPayExpandId(String payExpandId) {
this.payExpandId = payExpandId;
return this;
}
public String getPayExpandId() {
return this.payExpandId;
}
public UpdateMerchantexpandMerchantRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
}