Subversion Repositories SmartDukaan

Rev

Rev 21730 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.res.order;

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;
        }
}