com.alipay.api.domain.WalletUserIdentityInfo Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 场景钱包业务中的用户主体身份信息
*
* @author auto create
* @since 1.0, 2024-11-27 18:49:49
*/
public class WalletUserIdentityInfo extends AlipayObject {
private static final long serialVersionUID = 6385441981572635432L;
/**
* 证件号
*/
@ApiField("cert_no")
private String certNo;
/**
* 证件类型
*/
@ApiField("cert_type")
private String certType;
/**
* 用户名称
*/
@ApiField("user_name")
private String userName;
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy