com.alipay.api.response.KoubeiMarketingToolPointsQueryResponse 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: koubei.marketing.tool.points.query response.
*
* @author auto create
* @since 1.0, 2016-10-09 11:45:18
*/
public class KoubeiMarketingToolPointsQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4874741896651926271L;
/**
* 可用集点
*/
@ApiField("available_points")
private String availablePoints;
/**
* 冻结集点
*/
@ApiField("freezed_points")
private String freezedPoints;
/**
* 累计集点
*/
@ApiField("total_points")
private String totalPoints;
public void setAvailablePoints(String availablePoints) {
this.availablePoints = availablePoints;
}
public String getAvailablePoints( ) {
return this.availablePoints;
}
public void setFreezedPoints(String freezedPoints) {
this.freezedPoints = freezedPoints;
}
public String getFreezedPoints( ) {
return this.freezedPoints;
}
public void setTotalPoints(String totalPoints) {
this.totalPoints = totalPoints;
}
public String getTotalPoints( ) {
return this.totalPoints;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy