
com.alipay.api.response.AlipayUserGradeQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.user.grade.query response.
*
* @author auto create
* @since 1.0, 2023-05-31 00:01:49
*/
public class AlipayUserGradeQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1889416624375225621L;
/**
* 用户的蚂蚁会员积分余额
*/
@ApiField("balance")
private Long balance;
/**
* 用户的蚂蚁会员等级
*/
@ApiField("grade")
private String grade;
public void setBalance(Long balance) {
this.balance = balance;
}
public Long getBalance( ) {
return this.balance;
}
public void setGrade(String grade) {
this.grade = grade;
}
public String getGrade( ) {
return this.grade;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy