-
Notifications
You must be signed in to change notification settings - Fork 164
/
java.java
432 lines (361 loc) Β· 8.83 KB
/
java.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
// Converter.java
// To use this code, add the following Maven dependency to your project:
//
//
// com.fasterxml.jackson.core : jackson-databind : 2.9.0
//
// Import this package:
//
// import br.com.stracini.guilherme.bancosbrasileiros.Converter;
//
// Then you can deserialize a JSON string with
//
// Bank[] data = Converter.fromJsonString(jsonString);
package br.com.stracini.guilherme.bancosbrasileiros;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"COMPE",
"ISPB",
"Document",
"LongName",
"ShortName",
"Network",
"Type",
"PixType",
"Charge",
"CreditDocument",
"LegalCheque",
"DetectaFlow",
"Pcr",
"Pcrp",
"SalaryPortability",
"Products",
"Url",
"DateOperationStarted",
"DatePixStarted",
"DateRegistered",
"DateUpdated"
})
@Generated("jsonschema2pojo")
public class Bank implements Serializable
{
@JsonProperty("COMPE")
private String compe;
@JsonProperty("ISPB")
private String ispb;
@JsonProperty("Document")
private String document;
@JsonProperty("LongName")
private String longName;
@JsonProperty("ShortName")
private String shortName;
@JsonProperty("Network")
private String network;
@JsonProperty("Type")
private Object type;
@JsonProperty("PixType")
private Object pixType;
@JsonProperty("Charge")
private Object charge;
@JsonProperty("CreditDocument")
private Object creditDocument;
@JsonProperty("LegalCheque")
private Object legalCheque;
@JsonProperty("DetectaFlow")
private Object detectaFlow;
@JsonProperty("Pcr")
private Object pcr;
@JsonProperty("Pcrp")
private Object pcrp;
@JsonProperty("SalaryPortability")
private Object salaryPortability;
@JsonProperty("Products")
private Object products;
@JsonProperty("Url")
private Object url;
@JsonProperty("DateOperationStarted")
private String dateOperationStarted;
@JsonProperty("DatePixStarted")
private Object datePixStarted;
@JsonProperty("DateRegistered")
private String dateRegistered;
@JsonProperty("DateUpdated")
private String dateUpdated;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
private final static long serialVersionUID = -2503816616111349162L;
@JsonProperty("COMPE")
public String getCompe() {
return compe;
}
@JsonProperty("COMPE")
public void setCompe(String compe) {
this.compe = compe;
}
public Bank withCompe(String compe) {
this.compe = compe;
return this;
}
@JsonProperty("ISPB")
public String getIspb() {
return ispb;
}
@JsonProperty("ISPB")
public void setIspb(String ispb) {
this.ispb = ispb;
}
public Bank withIspb(String ispb) {
this.ispb = ispb;
return this;
}
@JsonProperty("Document")
public String getDocument() {
return document;
}
@JsonProperty("Document")
public void setDocument(String document) {
this.document = document;
}
public Bank withDocument(String document) {
this.document = document;
return this;
}
@JsonProperty("LongName")
public String getLongName() {
return longName;
}
@JsonProperty("LongName")
public void setLongName(String longName) {
this.longName = longName;
}
public Bank withLongName(String longName) {
this.longName = longName;
return this;
}
@JsonProperty("ShortName")
public String getShortName() {
return shortName;
}
@JsonProperty("ShortName")
public void setShortName(String shortName) {
this.shortName = shortName;
}
public Bank withShortName(String shortName) {
this.shortName = shortName;
return this;
}
@JsonProperty("Network")
public String getNetwork() {
return network;
}
@JsonProperty("Network")
public void setNetwork(String network) {
this.network = network;
}
public Bank withNetwork(String network) {
this.network = network;
return this;
}
@JsonProperty("Type")
public Object getType() {
return type;
}
@JsonProperty("Type")
public void setType(Object type) {
this.type = type;
}
public Bank withType(Object type) {
this.type = type;
return this;
}
@JsonProperty("PixType")
public Object getPixType() {
return pixType;
}
@JsonProperty("PixType")
public void setPixType(Object pixType) {
this.pixType = pixType;
}
public Bank withPixType(Object pixType) {
this.pixType = pixType;
return this;
}
@JsonProperty("Charge")
public Object getCharge() {
return charge;
}
@JsonProperty("Charge")
public void setCharge(Object charge) {
this.charge = charge;
}
public Bank withCharge(Object charge) {
this.charge = charge;
return this;
}
@JsonProperty("CreditDocument")
public Object getCreditDocument() {
return creditDocument;
}
@JsonProperty("CreditDocument")
public void setCreditDocument(Object creditDocument) {
this.creditDocument = creditDocument;
}
public Bank withCreditDocument(Object creditDocument) {
this.creditDocument = creditDocument;
return this;
}
@JsonProperty("LegalCheque")
public Object getLegalCheque() {
return legalCheque;
}
@JsonProperty("LegalCheque")
public void setLegalCheque(Object legalCheque) {
this.legalCheque = legalCheque;
}
public Bank withLegalCheque(Object legalCheque) {
this.legalCheque = legalCheque;
return this;
}
@JsonProperty("DetectaFlow")
public Object getDetectaFlow() {
return detectaFlow;
}
@JsonProperty("DetectaFlow")
public void setDetectaFlow(Object detectaFlow) {
this.detectaFlow = detectaFlow;
}
public Bank withDetectaFlow(Object detectaFlow) {
this.detectaFlow = detectaFlow;
return this;
}
@JsonProperty("Pcr")
public Object getPcr() {
return pcr;
}
@JsonProperty("Pcr")
public void setPcr(Object pcr) {
this.pcr = pcr;
}
public Bank withPcr(Object pcr) {
this.pcr = pcr;
return this;
}
@JsonProperty("Pcrp")
public Object getPcrp() {
return pcrp;
}
@JsonProperty("Pcrp")
public void setPcrp(Object pcrp) {
this.pcrp = pcrp;
}
public Bank withPcrp(Object pcrp) {
this.pcrp = pcrp;
return this;
}
@JsonProperty("SalaryPortability")
public Object getSalaryPortability() {
return salaryPortability;
}
@JsonProperty("SalaryPortability")
public void setSalaryPortability(Object salaryPortability) {
this.salaryPortability = salaryPortability;
}
public Bank withSalaryPortability(Object salaryPortability) {
this.salaryPortability = salaryPortability;
return this;
}
@JsonProperty("Products")
public Object getProducts() {
return products;
}
@JsonProperty("Products")
public void setProducts(Object products) {
this.products = products;
}
public Bank withProducts(Object products) {
this.products = products;
return this;
}
@JsonProperty("Url")
public Object getUrl() {
return url;
}
@JsonProperty("Url")
public void setUrl(Object url) {
this.url = url;
}
public Bank withUrl(Object url) {
this.url = url;
return this;
}
@JsonProperty("DateOperationStarted")
public String getDateOperationStarted() {
return dateOperationStarted;
}
@JsonProperty("DateOperationStarted")
public void setDateOperationStarted(String dateOperationStarted) {
this.dateOperationStarted = dateOperationStarted;
}
public Bank withDateOperationStarted(String dateOperationStarted) {
this.dateOperationStarted = dateOperationStarted;
return this;
}
@JsonProperty("DatePixStarted")
public Object getDatePixStarted() {
return datePixStarted;
}
@JsonProperty("DatePixStarted")
public void setDatePixStarted(Object datePixStarted) {
this.datePixStarted = datePixStarted;
}
public Bank withDatePixStarted(Object datePixStarted) {
this.datePixStarted = datePixStarted;
return this;
}
@JsonProperty("DateRegistered")
public String getDateRegistered() {
return dateRegistered;
}
@JsonProperty("DateRegistered")
public void setDateRegistered(String dateRegistered) {
this.dateRegistered = dateRegistered;
}
public Bank withDateRegistered(String dateRegistered) {
this.dateRegistered = dateRegistered;
return this;
}
@JsonProperty("DateUpdated")
public String getDateUpdated() {
return dateUpdated;
}
@JsonProperty("DateUpdated")
public void setDateUpdated(String dateUpdated) {
this.dateUpdated = dateUpdated;
}
public Bank withDateUpdated(String dateUpdated) {
this.dateUpdated = dateUpdated;
return this;
}
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
public Bank withAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
return this;
}
}