Back to project page Interkassa_android.
The source code is released under:
Apache License
If you think the Android project Interkassa_android 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 com.interkassa.models; //w w w . j a va2 s . c om public class PaymentInfo { String psPrice; String exchangeRate; public PaymentInfo(String psPrice, String exchangeRate) { super(); this.psPrice = psPrice; this.exchangeRate = exchangeRate; } public String getPsPrice() { return psPrice; } public void setPsPrice(String psPrice) { this.psPrice = psPrice; } public String getExchangeRate() { return exchangeRate; } public void setExchangeRate(String exchangeRate) { this.exchangeRate = exchangeRate; } }