com.antgroup.antchain.openapi.riskplus.models.CustomInfoResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class CustomInfoResult extends TeaModel {
// 社会信用代码
@NameInMap("credit_code")
@Validation(required = true)
public String creditCode;
// 公司名称
@NameInMap("company_name")
@Validation(required = true)
public String companyName;
// 法人姓名
@NameInMap("legal_name")
@Validation(required = true)
public String legalName;
// 身份证号
@NameInMap("id_card")
@Validation(required = true)
public String idCard;
// 手机号
@NameInMap("phone_number")
@Validation(required = true)
public String phoneNumber;
// 账号
@NameInMap("account")
@Validation(required = true)
public String account;
// 密码
@NameInMap("password")
@Validation(required = true)
public String password;
public static CustomInfoResult build(java.util.Map map) throws Exception {
CustomInfoResult self = new CustomInfoResult();
return TeaModel.build(map, self);
}
public CustomInfoResult setCreditCode(String creditCode) {
this.creditCode = creditCode;
return this;
}
public String getCreditCode() {
return this.creditCode;
}
public CustomInfoResult setCompanyName(String companyName) {
this.companyName = companyName;
return this;
}
public String getCompanyName() {
return this.companyName;
}
public CustomInfoResult setLegalName(String legalName) {
this.legalName = legalName;
return this;
}
public String getLegalName() {
return this.legalName;
}
public CustomInfoResult setIdCard(String idCard) {
this.idCard = idCard;
return this;
}
public String getIdCard() {
return this.idCard;
}
public CustomInfoResult setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public String getPhoneNumber() {
return this.phoneNumber;
}
public CustomInfoResult setAccount(String account) {
this.account = account;
return this;
}
public String getAccount() {
return this.account;
}
public CustomInfoResult setPassword(String password) {
this.password = password;
return this;
}
public String getPassword() {
return this.password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy