Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23502 ashik.ali 1
package com.spice.profitmandi.common.model;
2
 
23543 ashik.ali 3
import java.util.Set;
4
 
23502 ashik.ali 5
public class RechargeRequest {
6
 
7
	private int operatorId;
8
	private String rechargeType;
9
	private String referenceNumber;
10
	private String operatorType;
11
	private float amount;
23543 ashik.ali 12
	private Set<CustomPaymentOption> paymentOptions;
23502 ashik.ali 13
 
14
	public int getOperatorId() {
15
		return operatorId;
16
	}
17
	public void setOperatorId(int operatorId) {
18
		this.operatorId = operatorId;
19
	}
20
	public String getRechargeType() {
21
		return rechargeType;
22
	}
23
	public void setRechargeType(String rechargeType) {
24
		this.rechargeType = rechargeType;
25
	}
26
	public String getReferenceNumber() {
27
		return referenceNumber;
28
	}
29
	public void setReferenceNumber(String referenceNumber) {
30
		this.referenceNumber = referenceNumber;
31
	}
32
	public String getOperatorType() {
33
		return operatorType;
34
	}
35
	public void setOperatorType(String operatorType) {
36
		this.operatorType = operatorType;
37
	}
38
	public float getAmount() {
39
		return amount;
40
	}
41
	public void setAmount(float amount) {
42
		this.amount = amount;
43
	}
23543 ashik.ali 44
	public Set<CustomPaymentOption> getPaymentOptions() {
45
		return paymentOptions;
46
	}
47
	public void setPaymentOptions(Set<CustomPaymentOption> paymentOptions) {
48
		this.paymentOptions = paymentOptions;
49
	}
23502 ashik.ali 50
	@Override
51
	public String toString() {
52
		return "RechargeRequest [operatorId=" + operatorId + ", rechargeType=" + rechargeType + ", referenceNumber="
23543 ashik.ali 53
				+ referenceNumber + ", operatorType=" + operatorType + ", amount=" + amount + ", paymentOptions="
54
				+ paymentOptions + "]";
23502 ashik.ali 55
	}
56
 
57
}