Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13286 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
2
 
3
 
4
public class PayuPayPojo {
5
	public String getKey() {
6
		return key;
7
	}
8
	public void setKey(String key) {
9
		this.key = key;
10
	}
11
	public String getTxnid() {
12
		return txnid;
13
	}
14
	public void setTxnid(String txnid) {
15
		this.txnid = txnid;
16
	}
17
	public String getAmount() {
18
		return amount;
19
	}
20
	public void setAmount(String amount) {
21
		this.amount = amount;
22
	}
23
	public String getProductinfo() {
24
		return productinfo;
25
	}
26
	public void setProductinfo(String productinfo) {
27
		this.productinfo = productinfo;
28
	}
29
	public String getFirstname() {
30
		return firstname;
31
	}
32
	public void setFirstname(String firstname) {
33
		this.firstname = firstname;
34
	}
35
	public String getEmail() {
36
		return email;
37
	}
38
	public void setEmail(String email) {
39
		this.email = email;
40
	}
41
	public String getLastname() {
42
		return lastname;
43
	}
44
	public void setLastname(String lastname) {
45
		this.lastname = lastname;
46
	}
47
	public String getAddress1() {
48
		return address1;
49
	}
50
	public void setAddress1(String address1) {
51
		this.address1 = address1;
52
	}
53
	public String getAddress2() {
54
		return address2;
55
	}
56
	public void setAddress2(String address2) {
57
		this.address2 = address2;
58
	}
59
	public String getCity() {
60
		return city;
61
	}
62
	public void setCity(String city) {
63
		this.city = city;
64
	}
65
	public String getState() {
66
		return state;
67
	}
68
	public void setState(String state) {
69
		this.state = state;
70
	}
71
	public String getCountry() {
72
		return country;
73
	}
74
	public void setCountry(String country) {
75
		this.country = country;
76
	}
77
	public String getZipcode() {
78
		return zipcode;
79
	}
80
	public void setZipcode(String zipcode) {
81
		this.zipcode = zipcode;
82
	}
83
	public String getSurl() {
84
		return surl;
85
	}
86
	public void setSurl(String surl) {
87
		this.surl = surl;
88
	}
89
	public String getFurl() {
90
		return furl;
91
	}
92
	public void setFurl(String furl) {
93
		this.furl = furl;
94
	}
95
	public String getCurl() {
96
		return curl;
97
	}
98
	public void setCurl(String curl) {
99
		this.curl = curl;
100
	}
101
	public String getHash() {
102
		return hash;
103
	}
104
	public void setHash(String hash) {
105
		this.hash = hash;
106
	}
107
	public String getPg() {
108
		return pg;
109
	}
110
	public void setPg(String pg) {
111
		this.pg = pg;
112
	}
113
	public String getCodurl() {
114
		return codurl;
115
	}
116
	public void setCodurl(String codurl) {
117
		this.codurl = codurl;
118
	}
119
	public String getDrop_category() {
120
		return drop_category;
121
	}
122
	public void setDrop_category(String drop_category) {
123
		this.drop_category = drop_category;
124
	}
125
	public void setPhone(String phone) {
126
		this.phone = phone;
127
	}
128
	public String getPhone() {
129
		return phone;
130
	}
131
	public void setBankcode(String bankcode) {
132
		this.bankcode = bankcode;
133
	}
134
	public String getBankcode() {
135
		return bankcode;
136
	}
137
	public void setPostActionUrl(String postActionUrl) {
138
		this.postActionUrl = postActionUrl;
139
	}
140
	public String getPostActionUrl() {
141
		return postActionUrl;
142
	}
143
	private String key;
144
	private String txnid;
145
	private String amount;
146
	private String productinfo;
147
	private String firstname;
148
	private String email;
149
	private String lastname;
150
	private String address1;
151
	private String address2;
152
	private String city;
153
	private String state;
154
	private String country;
155
	private String zipcode;
156
	private String surl;
157
	private String furl;
158
	private String curl;
159
	private String hash;
160
	private String pg;
161
	private String codurl;
162
	private String drop_category;
163
	private String phone;
164
	private String bankcode;
165
	private String postActionUrl;
166
}