com.antgroup.antchain.openapi.twc.models.CheckEpidentityTwometaRequest 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 CheckEpidentityTwometaRequest 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;
public static CheckEpidentityTwometaRequest build(java.util.Map map) throws Exception {
CheckEpidentityTwometaRequest self = new CheckEpidentityTwometaRequest();
return TeaModel.build(map, self);
}
public CheckEpidentityTwometaRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CheckEpidentityTwometaRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public CheckEpidentityTwometaRequest setEpCertName(String epCertName) {
this.epCertName = epCertName;
return this;
}
public String getEpCertName() {
return this.epCertName;
}
public CheckEpidentityTwometaRequest setEpCertNo(String epCertNo) {
this.epCertNo = epCertNo;
return this;
}
public String getEpCertNo() {
return this.epCertNo;
}
}