-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathAULocalAccountIdentification.java
More file actions
310 lines (276 loc) · 9.92 KB
/
AULocalAccountIdentification.java
File metadata and controls
310 lines (276 loc) · 9.92 KB
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
/*
* Capital API
*
* The version of the OpenAPI document: 1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.adyen.model.capital;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.core.JsonProcessingException;
import java.util.*;
/** AULocalAccountIdentification */
@JsonPropertyOrder({
AULocalAccountIdentification.JSON_PROPERTY_ACCOUNT_NUMBER,
AULocalAccountIdentification.JSON_PROPERTY_BSB_CODE,
AULocalAccountIdentification.JSON_PROPERTY_TYPE
})
@JsonIgnoreProperties(
value =
"type", // ignore manually set type, it will be automatically generated by Jackson during
// serialization
allowSetters = true // allows the type to be set during deserialization
)
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.PROPERTY,
property = "type",
visible = true)
public class AULocalAccountIdentification extends BankAccountIdentification {
public static final String JSON_PROPERTY_ACCOUNT_NUMBER = "accountNumber";
private String accountNumber;
/** Mark when the attribute has been explicitly set. */
private boolean isSetAccountNumber = false;
public static final String JSON_PROPERTY_BSB_CODE = "bsbCode";
private String bsbCode;
/** Mark when the attribute has been explicitly set. */
private boolean isSetBsbCode = false;
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
/** Mark when the attribute has been explicitly set. */
private boolean isSetType = false;
/**
* Sets whether attributes with null values should be explicitly included in the JSON payload.
* Default is false.
*/
@JsonIgnore private boolean includeNullValues = false;
public AULocalAccountIdentification() {}
/**
* The bank account number, without separators or whitespace.
*
* @param accountNumber The bank account number, without separators or whitespace.
* @return the current {@code AULocalAccountIdentification} instance, allowing for method chaining
*/
public AULocalAccountIdentification accountNumber(String accountNumber) {
this.accountNumber = accountNumber;
isSetAccountNumber = true; // mark as set
return this;
}
/**
* The bank account number, without separators or whitespace.
*
* @return accountNumber The bank account number, without separators or whitespace.
*/
@JsonProperty(JSON_PROPERTY_ACCOUNT_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAccountNumber() {
return accountNumber;
}
/**
* The bank account number, without separators or whitespace.
*
* @param accountNumber The bank account number, without separators or whitespace.
*/
@JsonProperty(JSON_PROPERTY_ACCOUNT_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
isSetAccountNumber = true; // mark as set
}
/**
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch),
* without separators or whitespace.
*
* @param bsbCode The 6-digit [Bank State Branch (BSB)
* code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
* @return the current {@code AULocalAccountIdentification} instance, allowing for method chaining
*/
public AULocalAccountIdentification bsbCode(String bsbCode) {
this.bsbCode = bsbCode;
isSetBsbCode = true; // mark as set
return this;
}
/**
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch),
* without separators or whitespace.
*
* @return bsbCode The 6-digit [Bank State Branch (BSB)
* code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
*/
@JsonProperty(JSON_PROPERTY_BSB_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getBsbCode() {
return bsbCode;
}
/**
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch),
* without separators or whitespace.
*
* @param bsbCode The 6-digit [Bank State Branch (BSB)
* code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
*/
@JsonProperty(JSON_PROPERTY_BSB_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBsbCode(String bsbCode) {
this.bsbCode = bsbCode;
isSetBsbCode = true; // mark as set
}
/**
* **auLocal**
*
* @param type **auLocal**
* @return the current {@code AULocalAccountIdentification} instance, allowing for method chaining
*/
public AULocalAccountIdentification type(String type) {
this.type = type;
isSetType = true; // mark as set
return this;
}
/**
* **auLocal**
*
* @return type **auLocal**
*/
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}
/**
* **auLocal**
*
* @param type **auLocal**
*/
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setType(String type) {
this.type = type;
isSetType = true; // mark as set
}
/**
* Configures whether null values are explicitly serialized in the JSON payload. Default is false.
*/
public AULocalAccountIdentification includeNullValues(boolean includeNullValues) {
this.includeNullValues = includeNullValues;
return this;
}
/** Returns whether null values are explicitly serialized in the JSON payload. */
public boolean isIncludeNullValues() {
return includeNullValues;
}
/**
* Sets whether null values should be explicitly serialized in the JSON payload. Default is false.
*/
public void setIncludeNullValues(boolean includeNullValues) {
this.includeNullValues = includeNullValues;
}
/** Return true if this AULocalAccountIdentification object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AULocalAccountIdentification auLocalAccountIdentification = (AULocalAccountIdentification) o;
return Objects.equals(this.accountNumber, auLocalAccountIdentification.accountNumber)
&& Objects.equals(this.isSetAccountNumber, auLocalAccountIdentification.isSetAccountNumber)
&& Objects.equals(this.bsbCode, auLocalAccountIdentification.bsbCode)
&& Objects.equals(this.isSetBsbCode, auLocalAccountIdentification.isSetBsbCode)
&& Objects.equals(this.type, auLocalAccountIdentification.type)
&& Objects.equals(this.isSetType, auLocalAccountIdentification.isSetType)
&& super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(
accountNumber,
isSetAccountNumber,
bsbCode,
isSetBsbCode,
type,
isSetType,
super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AULocalAccountIdentification {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n");
sb.append(" bsbCode: ").append(toIndentedString(bsbCode)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
static {
// Initialize and register the discriminator mappings.
Map<String, Class<?>> mappings = new HashMap<>();
mappings.put("AULocalAccountIdentification", AULocalAccountIdentification.class);
JSON.registerDiscriminator(AULocalAccountIdentification.class, "type", mappings);
}
/** Returns a map of properties to be merged into the JSON payload as explicit null values. */
@JsonInclude(JsonInclude.Include.ALWAYS)
@JsonAnyGetter
public Map<String, Object> getExplicitNulls() {
if (!this.includeNullValues) {
return Collections.emptyMap();
}
Map<String, Object> nulls = new HashMap<>();
if (isSetAccountNumber) {
addIfNull(nulls, JSON_PROPERTY_ACCOUNT_NUMBER, this.accountNumber);
}
if (isSetBsbCode) {
addIfNull(nulls, JSON_PROPERTY_BSB_CODE, this.bsbCode);
}
if (isSetType) {
addIfNull(nulls, JSON_PROPERTY_TYPE, this.type);
}
return nulls;
}
// add to map when value is null
private void addIfNull(Map<String, Object> map, String key, Object value) {
if (value == null) {
map.put(key, null);
}
}
/**
* Create an instance of AULocalAccountIdentification given an JSON string
*
* @param jsonString JSON string
* @return An instance of AULocalAccountIdentification
* @throws JsonProcessingException if the JSON string is invalid with respect to
* AULocalAccountIdentification
*/
public static AULocalAccountIdentification fromJson(String jsonString)
throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, AULocalAccountIdentification.class);
}
/**
* Convert an instance of AULocalAccountIdentification to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}