Subversion Repositories SmartDukaan

Rev

Rev 21730 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21505 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class ConfirmRechargeResponse {
4
 
5
    private Long walletAmount;
6
    private Long walletAmountLeft;
7
    private Boolean canProceed;
8
    private String reason;
9
 
10
    public String getReason() {
11
		return reason;
12
	}
13
	public void setReason(String reason) {
14
		this.reason = reason;
15
	}
16
	public Boolean getCanProceed() {
17
		return canProceed;
18
	}
19
	public void setCanProceed(Boolean canProceed) {
20
		this.canProceed = canProceed;
21
	}
22
    public Long getWalletAmount() {
23
        return walletAmount;
24
    }
25
    public void setWalletAmount(Long walletAmount) {
26
        this.walletAmount = walletAmount;
27
    }
28
	public void setWalletAmountLeft(Long walletAmountLeft) {
29
		this.walletAmountLeft = walletAmountLeft;
30
	}
31
	public Long getWalletAmountLeft() {
32
		return walletAmountLeft;
33
	}
34
}