Subversion Repositories SmartDukaan

Rev

Rev 9936 | Details | Compare with Previous | 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
 
10344 amit.gupta 5
    private Long payAmount;
6
    private Long walletAmount;
7
    private Long couponAmount;
8
    private Long walletAmountLeft;
9936 anupam.sin 9
 
10344 amit.gupta 10
    private Boolean isLoginRequired;
11
 
9936 anupam.sin 12
    public Long getPayAmount() {
13
        return payAmount;
14
    }
15
    public void setPayAmount(Long payAmount) {
16
        this.payAmount = payAmount;
17
    }
18
    public Long getWalletAmount() {
19
        return walletAmount;
20
    }
21
    public void setWalletAmount(Long walletAmount) {
22
        this.walletAmount = walletAmount;
23
    }
24
    public Long getCouponAmount() {
25
        return couponAmount;
26
    }
27
    public void setCouponAmount(Long couponAmount) {
28
        this.couponAmount = couponAmount;
29
    }
30
    public boolean isLoginRequired() {
31
        return isLoginRequired;
32
    }
33
    public void setLoginRequired(boolean isLoginRequired) {
34
        this.isLoginRequired = isLoginRequired;
35
    }
10344 amit.gupta 36
	public void setWalletAmountLeft(Long walletAmountLeft) {
37
		this.walletAmountLeft = walletAmountLeft;
38
	}
39
	public Long getWalletAmountLeft() {
40
		return walletAmountLeft;
41
	}
9936 anupam.sin 42
}