Subversion Repositories SmartDukaan

Rev

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

Rev 23502 Rev 23543
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
import java.util.Set;
-
 
4
 
3
public class RechargeRequest {
5
public class RechargeRequest {
4
	
6
	
5
	private int operatorId;
7
	private int operatorId;
6
	private String rechargeType;
8
	private String rechargeType;
7
	private String referenceNumber;
9
	private String referenceNumber;
8
	private String operatorType;
10
	private String operatorType;
9
	private float amount;
11
	private float amount;
-
 
12
	private Set<CustomPaymentOption> paymentOptions;
10
	
13
	
11
	public int getOperatorId() {
14
	public int getOperatorId() {
12
		return operatorId;
15
		return operatorId;
13
	}
16
	}
14
	public void setOperatorId(int operatorId) {
17
	public void setOperatorId(int operatorId) {
Line 36... Line 39...
36
		return amount;
39
		return amount;
37
	}
40
	}
38
	public void setAmount(float amount) {
41
	public void setAmount(float amount) {
39
		this.amount = amount;
42
		this.amount = amount;
40
	}
43
	}
-
 
44
	public Set<CustomPaymentOption> getPaymentOptions() {
-
 
45
		return paymentOptions;
41
	
46
	}
-
 
47
	public void setPaymentOptions(Set<CustomPaymentOption> paymentOptions) {
-
 
48
		this.paymentOptions = paymentOptions;
-
 
49
	}
42
	@Override
50
	@Override
43
	public String toString() {
51
	public String toString() {
44
		return "RechargeRequest [operatorId=" + operatorId + ", rechargeType=" + rechargeType + ", referenceNumber="
52
		return "RechargeRequest [operatorId=" + operatorId + ", rechargeType=" + rechargeType + ", referenceNumber="
45
				+ referenceNumber + ", operatorType=" + operatorType + ", amount=" + amount + "]";
53
				+ referenceNumber + ", operatorType=" + operatorType + ", amount=" + amount + ", paymentOptions="
-
 
54
				+ paymentOptions + "]";
46
	}
55
	}
47
	
56
	
48
}
57
}