Back to project page Java-Yandex.Money-API-SDK.
The source code is released under:
MIT License
If you think the Android project Java-Yandex.Money-API-SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ru.yandex.money.api.response; /* www . j av a 2s.c o m*/ import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; /** * ?????? ?? ???????????? ????????? ???????? ?? ????????? ?????. * <p/> * <p/> * Created: 26.10.13 22:30 * <p/> * * @author OneHalf */ public class FundraisingStatsResponse implements Serializable { private static final long serialVersionUID = 1L; private String error; private BigDecimal sum; private Long count; private Date first_ts; private Date last_ts; private FundraisingStatsResponse() {} /** * ????? ?????????? ?? ??????? ??? ?????? ? ?????????? ???????? * @return ???? ??????? ??????????? ???????? */ public Boolean isSuccess() { return error == null; } /** * @return ??? ??????. ?????????????? ??? ?????? ??????????? ????????. * ????????? ?????????: * <ul> * <li>illegal_param_label - ???????? ???????? ????????? label</li> * <li>???? ?????? ?????????: ????????????? ??????, ????????? ????? ???????? ???????.</li> * </ul> */ public String getError() { return error; } public BigDecimal getSum() { return sum; } public Long getCount() { return count; } /** * @return ???? ??????? ??????? ?? ??????????? ?????. * ???? ?????????????, ????? ????? ???????? ??? ?? ???? */ public Date getFirstTs() { return first_ts; } /** * @return ???? ??????????? ??????? ?? ??????????? ?????. * ???? ?????????????, ????? ????? ???????? ??? ?? ???? */ public Date getLastTs() { return last_ts; } @Override public String toString() { return "FundraisingStatsResponse{" + "error='" + error + '\'' + ", sum=" + sum + ", count=" + count + ", first_ts=" + first_ts + ", last_ts=" + last_ts + '}'; } }