13
13
package com .adyen .model .balanceplatform ;
14
14
15
15
import java .util .Objects ;
16
- import java .util .Arrays ;
17
16
import java .util .Map ;
18
17
import java .util .HashMap ;
19
18
import com .fasterxml .jackson .annotation .JsonInclude ;
20
19
import com .fasterxml .jackson .annotation .JsonProperty ;
21
20
import com .fasterxml .jackson .annotation .JsonCreator ;
22
21
import com .fasterxml .jackson .annotation .JsonTypeName ;
23
22
import com .fasterxml .jackson .annotation .JsonValue ;
24
- import io .swagger .annotations .ApiModel ;
25
- import io .swagger .annotations .ApiModelProperty ;
23
+ import java .util .Arrays ;
26
24
import com .fasterxml .jackson .annotation .JsonPropertyOrder ;
27
25
import com .fasterxml .jackson .core .JsonProcessingException ;
28
26
@@ -47,7 +45,7 @@ public class AULocalAccountIdentification {
47
45
* **auLocal**
48
46
*/
49
47
public enum TypeEnum {
50
- AULOCAL ("auLocal" );
48
+ AULOCAL (String . valueOf ( "auLocal" ) );
51
49
52
50
private String value ;
53
51
@@ -77,7 +75,7 @@ public static TypeEnum fromValue(String value) {
77
75
}
78
76
79
77
public static final String JSON_PROPERTY_TYPE = "type" ;
80
- private TypeEnum type ;
78
+ private TypeEnum type = TypeEnum . AULOCAL ;
81
79
82
80
public AULocalAccountIdentification () {
83
81
}
@@ -97,7 +95,6 @@ public AULocalAccountIdentification accountNumber(String accountNumber) {
97
95
* The bank account number, without separators or whitespace.
98
96
* @return accountNumber
99
97
*/
100
- @ ApiModelProperty (required = true , value = "The bank account number, without separators or whitespace." )
101
98
@ JsonProperty (JSON_PROPERTY_ACCOUNT_NUMBER )
102
99
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
103
100
public String getAccountNumber () {
@@ -108,7 +105,7 @@ public String getAccountNumber() {
108
105
* The bank account number, without separators or whitespace.
109
106
*
110
107
* @param accountNumber
111
- */
108
+ */
112
109
@ JsonProperty (JSON_PROPERTY_ACCOUNT_NUMBER )
113
110
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
114
111
public void setAccountNumber (String accountNumber ) {
@@ -130,7 +127,6 @@ public AULocalAccountIdentification bsbCode(String bsbCode) {
130
127
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
131
128
* @return bsbCode
132
129
*/
133
- @ ApiModelProperty (required = true , value = "The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace." )
134
130
@ JsonProperty (JSON_PROPERTY_BSB_CODE )
135
131
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
136
132
public String getBsbCode () {
@@ -141,7 +137,7 @@ public String getBsbCode() {
141
137
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
142
138
*
143
139
* @param bsbCode
144
- */
140
+ */
145
141
@ JsonProperty (JSON_PROPERTY_BSB_CODE )
146
142
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
147
143
public void setBsbCode (String bsbCode ) {
@@ -163,7 +159,6 @@ public AULocalAccountIdentification type(TypeEnum type) {
163
159
* **auLocal**
164
160
* @return type
165
161
*/
166
- @ ApiModelProperty (required = true , value = "**auLocal**" )
167
162
@ JsonProperty (JSON_PROPERTY_TYPE )
168
163
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
169
164
public TypeEnum getType () {
@@ -174,7 +169,7 @@ public TypeEnum getType() {
174
169
* **auLocal**
175
170
*
176
171
* @param type
177
- */
172
+ */
178
173
@ JsonProperty (JSON_PROPERTY_TYPE )
179
174
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
180
175
public void setType (TypeEnum type ) {
0 commit comments