Subversion Repositories SmartDukaan

Rev

Rev 9936 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.mobileapi.serving.pojos;

public class RechargeAmountPojo {

    private Long payAmount;
    private Long walletAmount;
    private Long couponAmount;
    private Long walletAmountLeft;
    
    private Boolean isLoginRequired;
    
    public Long getPayAmount() {
        return payAmount;
    }
    public void setPayAmount(Long payAmount) {
        this.payAmount = payAmount;
    }
    public Long getWalletAmount() {
        return walletAmount;
    }
    public void setWalletAmount(Long walletAmount) {
        this.walletAmount = walletAmount;
    }
    public Long getCouponAmount() {
        return couponAmount;
    }
    public void setCouponAmount(Long couponAmount) {
        this.couponAmount = couponAmount;
    }
    public boolean isLoginRequired() {
        return isLoginRequired;
    }
    public void setLoginRequired(boolean isLoginRequired) {
        this.isLoginRequired = isLoginRequired;
    }
        public void setWalletAmountLeft(Long walletAmountLeft) {
                this.walletAmountLeft = walletAmountLeft;
        }
        public Long getWalletAmountLeft() {
                return walletAmountLeft;
        }
}