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; /*from ww w.ja v a 2s .c om*/ import java.io.Serializable; import java.math.BigDecimal; /** * ??????? ???? ???????? ?????????? ?????? accountInfo. * ?????????? ????? ??????, ??????? ??????? ? ??? ?????? ????????????? * (????????? ????????? ???? ??????: 643 - ????????????? ?????). * @author dvmelnikov */ public class AccountInfoResponse implements Serializable { private static final long serialVersionUID = -5030821635331803325L; private String account; private BigDecimal balance; private String currency; private Boolean identified; private String account_type; private AccountInfoResponse() { } /** * * @return ????? ?????? ????????????? */ public String getAccount() { return account; } /** * * @return ???????? ?? ?????? ????????????? */ public BigDecimal getBalance() { return balance; } /** * * @return ??? ?????? ?????? ?????????????. ??????? 643 (????? ?? ?? * ?????????? ISO 4217). */ public String getCurrency() { return currency; } /** * @return true, ????? ???????????? ??????????????? ? ????????? ???????.????? */ public Boolean isIdentified() { return identified; } /** * @return ??? ?????? ? ????????? ???????.?????. "personal" ???? "professional" */ public String getAccountType() { return account_type; } @Override public String toString() { return "AccountInfoResponse{" + "account='" + account + '\'' + ", balance=" + balance + ", currency='" + currency + '\'' + ", identified=" + identified + ", account_type='" + account_type + '\'' + '}'; } }