
com.alipay.api.response.ZhimaAuthInfoAuthqueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.auth.info.authquery response.
*
* @author auto create
* @since 1.0, 2023-05-31 05:11:52
*/
public class ZhimaAuthInfoAuthqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8313813679538612485L;
/**
* 是否已经授权; authorized=true 表示已授权, authorized=false表示未授权
*/
@ApiField("authorized")
private Boolean authorized;
/**
* 当前授权业务查询标识
*/
@ApiField("open_id")
private String openId;
public void setAuthorized(Boolean authorized) {
this.authorized = authorized;
}
public Boolean getAuthorized( ) {
return this.authorized;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getOpenId( ) {
return this.openId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy