com.alipay.api.domain.ZhimaAuthInfoAuthqueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询是否授权的接口
*
* @author auto create
* @since 1.0, 2016-09-21 19:49:58
*/
public class ZhimaAuthInfoAuthqueryModel extends AlipayObject {
private static final long serialVersionUID = 1532219792841749557L;
/**
* json格式的内容,包含userId,userId为支付宝用户id,用户授权后商户可以拿到这个支付宝userId
*/
@ApiField("identity_param")
private String identityParam;
public String getIdentityParam() {
return this.identityParam;
}
public void setIdentityParam(String identityParam) {
this.identityParam = identityParam;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy