com.alipay.api.domain.IdentityParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 用户身份信息对象
*
* @author auto create
* @since 1.0, 2022-12-28 14:51:22
*/
public class IdentityParam extends AlipayObject {
private static final long serialVersionUID = 3535135489886639554L;
/**
* 姓名
*/
@ApiField("cert_name")
private String certName;
/**
* 证件号
*/
@ApiField("cert_no")
private String certNo;
/**
* 证件类型
*/
@ApiField("cert_type")
private String certType;
/**
* 身份类型
*/
@ApiField("identity_type")
private String identityType;
/**
* 用户openId
*/
@ApiField("open_id")
private String openId;
/**
* 用户id
*/
@ApiField("user_id")
private String userId;
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
}
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 getIdentityType() {
return this.identityType;
}
public void setIdentityType(String identityType) {
this.identityType = identityType;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy