Subversion Repositories SmartDukaan

Rev

Rev 9936 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9936 Rev 10344
Line 1... Line 1...
1
package in.shop2020.mobileapi.serving.pojos;
1
package in.shop2020.mobileapi.serving.pojos;
2
 
2
 
3
public class RechargeAmountPojo {
3
public class RechargeAmountPojo {
4
 
4
 
5
    Long payAmount;
5
    private Long payAmount;
6
    Long walletAmount;
6
    private Long walletAmount;
7
    Long couponAmount;
7
    private Long couponAmount;
-
 
8
    private Long walletAmountLeft;
-
 
9
    
8
    boolean isLoginRequired;
10
    private Boolean isLoginRequired;
9
    
11
    
10
    public Long getPayAmount() {
12
    public Long getPayAmount() {
11
        return payAmount;
13
        return payAmount;
12
    }
14
    }
13
    public void setPayAmount(Long payAmount) {
15
    public void setPayAmount(Long payAmount) {
Line 29... Line 31...
29
        return isLoginRequired;
31
        return isLoginRequired;
30
    }
32
    }
31
    public void setLoginRequired(boolean isLoginRequired) {
33
    public void setLoginRequired(boolean isLoginRequired) {
32
        this.isLoginRequired = isLoginRequired;
34
        this.isLoginRequired = isLoginRequired;
33
    }
35
    }
-
 
36
	public void setWalletAmountLeft(Long walletAmountLeft) {
-
 
37
		this.walletAmountLeft = walletAmountLeft;
-
 
38
	}
-
 
39
	public Long getWalletAmountLeft() {
-
 
40
		return walletAmountLeft;
-
 
41
	}
34
}
42
}