
com.alipay.api.response.AlipayOpenAuthUserauthRelationshipCertifyResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.auth.userauth.relationship.certify response.
*
* @author auto create
* @since 1.0, 2023-08-20 18:51:48
*/
public class AlipayOpenAuthUserauthRelationshipCertifyResponse extends AlipayResponse {
private static final long serialVersionUID = 4571799911522283519L;
/**
* 授权关系有效性校验,true:有效,false:无效
*/
@ApiField("effective")
private Boolean effective;
public void setEffective(Boolean effective) {
this.effective = effective;
}
public Boolean getEffective( ) {
return this.effective;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy