com.alipay.api.response.ZhimaAuthInfoAuthqueryResponse 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.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, 2016-11-08 10:37:18
*/
public class ZhimaAuthInfoAuthqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4161566961586923248L;
/**
* 是否已经授权,已授权:true,未授权:false
*/
@ApiField("authorized")
private Boolean authorized;
public void setAuthorized(Boolean authorized) {
this.authorized = authorized;
}
public Boolean getAuthorized( ) {
return this.authorized;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy