Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.mobileapi.serving.pojos;

public class RechargeAmountPojo {

    Long payAmount;
    Long walletAmount;
    Long couponAmount;
    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;
    }
}