com.antgroup.antchain.openapi.twc.models.CheckEpidentityFourmetaRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class CheckEpidentityFourmetaRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 认证企业名称。
@NameInMap("ep_cert_name")
@Validation(required = true)
public String epCertName;
// 企业证件号码。
@NameInMap("ep_cert_no")
@Validation(required = true)
public String epCertNo;
// 企业法人姓名。
@NameInMap("legal_person_cert_name")
@Validation(required = true)
public String legalPersonCertName;
// 企业法人身份证号码。
@NameInMap("legal_person_cert_no")
@Validation(required = true)
public String legalPersonCertNo;
public static CheckEpidentityFourmetaRequest build(java.util.Map map) throws Exception {
CheckEpidentityFourmetaRequest self = new CheckEpidentityFourmetaRequest();
return TeaModel.build(map, self);
}
public CheckEpidentityFourmetaRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CheckEpidentityFourmetaRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public CheckEpidentityFourmetaRequest setEpCertName(String epCertName) {
this.epCertName = epCertName;
return this;
}
public String getEpCertName() {
return this.epCertName;
}
public CheckEpidentityFourmetaRequest setEpCertNo(String epCertNo) {
this.epCertNo = epCertNo;
return this;
}
public String getEpCertNo() {
return this.epCertNo;
}
public CheckEpidentityFourmetaRequest setLegalPersonCertName(String legalPersonCertName) {
this.legalPersonCertName = legalPersonCertName;
return this;
}
public String getLegalPersonCertName() {
return this.legalPersonCertName;
}
public CheckEpidentityFourmetaRequest setLegalPersonCertNo(String legalPersonCertNo) {
this.legalPersonCertNo = legalPersonCertNo;
return this;
}
public String getLegalPersonCertNo() {
return this.legalPersonCertNo;
}
}