Subversion Repositories SmartDukaan

Rev

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