com.alipay.api.response.AlipayUserValidateResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.user.validate response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:15
*/
public class AlipayUserValidateResponse extends AlipayResponse {
private static final long serialVersionUID = 8561869577737319184L;
/**
* 支付宝userId
*/
@ApiField("alipay_user_id")
private String alipayUserId;
/**
* true标识通过认证.false标识没有
*/
@ApiField("certified")
private String certified;
/**
* 支付宝OpenId
*/
@ApiField("open_id")
private String openId;
/**
* 隐藏的真实姓名,如 *三(张三)
*/
@ApiField("real_name")
private String realName;
public void setAlipayUserId(String alipayUserId) {
this.alipayUserId = alipayUserId;
}
public String getAlipayUserId( ) {
return this.alipayUserId;
}
public void setCertified(String certified) {
this.certified = certified;
}
public String getCertified( ) {
return this.certified;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getOpenId( ) {
return this.openId;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getRealName( ) {
return this.realName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy