Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9936 anupam.sin 1
package in.shop2020.mobileapi.serving.pojos;
2
 
3
public class RechargeAmountPojo {
4
 
5
    Long payAmount;
6
    Long walletAmount;
7
    Long couponAmount;
8
    boolean isLoginRequired;
9
 
10
    public Long getPayAmount() {
11
        return payAmount;
12
    }
13
    public void setPayAmount(Long payAmount) {
14
        this.payAmount = payAmount;
15
    }
16
    public Long getWalletAmount() {
17
        return walletAmount;
18
    }
19
    public void setWalletAmount(Long walletAmount) {
20
        this.walletAmount = walletAmount;
21
    }
22
    public Long getCouponAmount() {
23
        return couponAmount;
24
    }
25
    public void setCouponAmount(Long couponAmount) {
26
        this.couponAmount = couponAmount;
27
    }
28
    public boolean isLoginRequired() {
29
        return isLoginRequired;
30
    }
31
    public void setLoginRequired(boolean isLoginRequired) {
32
        this.isLoginRequired = isLoginRequired;
33
    }
34
}