Rev 21730 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.res;public class ConfirmRechargeResponse {private Long walletAmount;private Long walletAmountLeft;private Boolean canProceed;private String reason;public String getReason() {return reason;}public void setReason(String reason) {this.reason = reason;}public Boolean getCanProceed() {return canProceed;}public void setCanProceed(Boolean canProceed) {this.canProceed = canProceed;}public Long getWalletAmount() {return walletAmount;}public void setWalletAmount(Long walletAmount) {this.walletAmount = walletAmount;}public void setWalletAmountLeft(Long walletAmountLeft) {this.walletAmountLeft = walletAmountLeft;}public Long getWalletAmountLeft() {return walletAmountLeft;}}