eleme.openapi.sdk.api.entity.merchant.PersonalIdentityAuthRequest Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.merchant;
public class PersonalIdentityAuthRequest{
/**
* 商户名称
*/
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* 个人证件类型
*/
private String licenseType;
public String getLicenseType() {
return licenseType;
}
public void setLicenseType(String licenseType) {
this.licenseType = licenseType;
}
/**
* 个人证件号码
*/
private String licenseNo;
public String getLicenseNo() {
return licenseNo;
}
public void setLicenseNo(String licenseNo) {
this.licenseNo = licenseNo;
}
/**
* 手机号码
*/
private String phoneNo;
public String getPhoneNo() {
return phoneNo;
}
public void setPhoneNo(String phoneNo) {
this.phoneNo = phoneNo;
}
/**
* 认证银行卡号
*/
private String authBankNo;
public String getAuthBankNo() {
return authBankNo;
}
public void setAuthBankNo(String authBankNo) {
this.authBankNo = authBankNo;
}
/**
* 实名认证方式
*/
private String authType;
public String getAuthType() {
return authType;
}
public void setAuthType(String authType) {
this.authType = authType;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy