Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
10273 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
2
 
3
import com.google.gson.annotations.SerializedName;
4
 
5
public class EBSPayPojo {
6
	@SerializedName(value="account_id")
7
	private String accountId;
8
 
9
	@SerializedName(value="reference_no")
10
	private String referenceNo;
11
	private String amount;
12
	private String description;
13
 
14
	@SerializedName(value="payment_option")
15
	private String paymentOption;
16
 
17
	private String name;
18
	private String address;
19
	private String city;
20
	private String state;
21
 
22
	@SerializedName(value="postal_code")
23
	private String postalCode;
24
	private String country;
25
	private String email;
26
	private String phone;
27
 
28
 
29
	@SerializedName(value="ship_name")
30
	private String shipName;
31
	@SerializedName(value="ship_address")
32
	private String shipAddress;
33
	@SerializedName(value="ship_city")
34
	private String shipCity;
35
	@SerializedName(value="ship_state")
36
	private String shipState;
37
 
10861 amit.gupta 38
	private String pass;
39
 
10273 amit.gupta 40
	@SerializedName(value="ship_postal_code")
41
	private String shipPostalCode;
42
	@SerializedName(value="ship_country")
43
	private String shipCountry;
44
	@SerializedName(value="ship_email")
45
	private String shipEmail;
46
	@SerializedName(value="ship_phone")
47
	private String shipPhone;
48
	@SerializedName(value="return_url")
49
	private String returnUrl;
10505 amit.gupta 50
 
51
	@SerializedName(value="page_id")
10867 amit.gupta 52
	private String pageId = "33";
10273 amit.gupta 53
 
10505 amit.gupta 54
	private String channel = "0";
55
 
10558 amit.gupta 56
	private String postAction;
10505 amit.gupta 57
 
10273 amit.gupta 58
	public String getAccountId() {
59
		return accountId;
60
	}
61
 
62
	public void setAccountId(String accountId) {
63
		this.accountId = accountId;
64
	}
65
 
66
	public String getReferenceNo() {
67
		return referenceNo;
68
	}
69
 
70
	public void setReferenceNo(String referenceNo) {
71
		this.referenceNo = referenceNo;
72
	}
73
 
74
	public String getAmount() {
75
		return amount;
76
	}
77
 
78
	public void setAmount(String amount) {
79
		this.amount = amount;
80
	}
81
 
82
	public String getDescription() {
83
		return description;
84
	}
85
 
86
	public void setDescription(String description) {
87
		this.description = description;
88
	}
89
 
90
	public String getPaymentOption() {
91
		return paymentOption;
92
	}
93
 
94
	public void setPaymentOption(String paymentOption) {
95
		this.paymentOption = paymentOption;
96
	}
97
 
98
	public String getName() {
99
		return name;
100
	}
101
 
102
	public void setName(String name) {
103
		this.name = name;
104
	}
105
 
106
	public String getAddress() {
107
		return address;
108
	}
109
 
110
	public void setAddress(String address) {
111
		this.address = address;
112
	}
113
 
114
	public String getCity() {
115
		return city;
116
	}
117
 
118
	public void setCity(String city) {
119
		this.city = city;
120
	}
121
 
122
	public String getState() {
123
		return state;
124
	}
125
 
126
	public void setState(String state) {
127
		this.state = state;
128
	}
129
 
130
	public String getPostalCode() {
131
		return postalCode;
132
	}
133
 
134
	public void setPostalCode(String postalCode) {
135
		this.postalCode = postalCode;
136
	}
137
 
138
	public String getCountry() {
139
		return country;
140
	}
141
 
142
	public void setCountry(String country) {
143
		this.country = country;
144
	}
145
 
146
	public String getEmail() {
147
		return email;
148
	}
149
 
150
	public void setEmail(String email) {
151
		this.email = email;
152
	}
153
 
154
	public String getPhone() {
155
		return phone;
156
	}
157
 
158
	public void setPhone(String phone) {
159
		this.phone = phone;
160
	}
161
 
162
	public String getShipName() {
163
		return shipName;
164
	}
165
 
166
	public void setShipName(String shipName) {
167
		this.shipName = shipName;
168
	}
169
 
170
	public String getShipAddress() {
171
		return shipAddress;
172
	}
173
 
174
	public void setShipAddress(String shipAddress) {
175
		this.shipAddress = shipAddress;
176
	}
177
 
178
	public String getShipCity() {
179
		return shipCity;
180
	}
181
 
182
	public void setShipCity(String shipCity) {
183
		this.shipCity = shipCity;
184
	}
185
 
186
	public String getShipState() {
187
		return shipState;
188
	}
189
 
190
	public void setShipState(String shipState) {
191
		this.shipState = shipState;
192
	}
193
 
194
	public String getShipPostalCode() {
195
		return shipPostalCode;
196
	}
197
 
198
	public void setShipPostalCode(String shipPostalCode) {
199
		this.shipPostalCode = shipPostalCode;
200
	}
201
 
202
	public String getShipCountry() {
203
		return shipCountry;
204
	}
205
 
206
	public void setShipCountry(String shipCountry) {
207
		this.shipCountry = shipCountry;
208
	}
209
 
210
	public String getShipEmail() {
211
		return shipEmail;
212
	}
213
 
214
	public void setShipEmail(String shipEmail) {
215
		this.shipEmail = shipEmail;
216
	}
217
 
218
	public String getShipPhone() {
219
		return shipPhone;
220
	}
221
 
222
	public void setShipPhone(String shipPhone) {
223
		this.shipPhone = shipPhone;
224
	}
225
 
226
	public String getReturnUrl() {
227
		return returnUrl;
228
	}
229
 
230
	public void setReturnUrl(String returnUrl) {
231
		this.returnUrl = returnUrl;
232
	}
233
 
234
	public String getMode() {
235
		return mode;
236
	}
237
 
238
	public void setMode(String mode) {
239
		this.mode = mode;
240
	}
241
 
242
	public String getSecureHash() {
243
		return secureHash;
244
	}
245
 
246
	public void setSecureHash(String secureHash) {
247
		this.secureHash = secureHash;
248
	}
249
 
10505 amit.gupta 250
	public void setPageId(String pageId) {
251
		this.pageId = pageId;
252
	}
253
 
254
	public String getPageId() {
255
		return pageId;
256
	}
257
 
258
	public void setChannel(String channel) {
259
		this.channel = channel;
260
	}
261
 
262
	public String getChannel() {
263
		return channel;
264
	}
265
 
10558 amit.gupta 266
	public void setPostAction(String postAction) {
267
		this.postAction = postAction;
268
	}
269
 
270
	public String getPostAction() {
271
		return postAction;
272
	}
273
 
10861 amit.gupta 274
	public void setPass(String pass) {
275
		this.pass = pass;
276
	}
277
 
278
	public String getPass() {
279
		return pass;
280
	}
281
 
10273 amit.gupta 282
	private String mode;
283
 
284
	@SerializedName(value="secure_hash")
285
	private String secureHash;
286
}