Skip to content

Commit 3613396

Browse files
Code generation: update services and models (#1473)
* false[adyen-sdk-automation] automated change * Revert Checkout PixStoredPaymentMethod changes --------- Co-authored-by: gcatanese <[email protected]>
1 parent a8ee898 commit 3613396

File tree

706 files changed

+15263
-14879
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

706 files changed

+15263
-14879
lines changed

src/main/java/com/adyen/model/balanceplatform/AULocalAccountIdentification.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public AULocalAccountIdentification() {
8383
/**
8484
* The bank account number, without separators or whitespace.
8585
*
86-
* @param accountNumber
86+
* @param accountNumber The bank account number, without separators or whitespace.
8787
* @return the current {@code AULocalAccountIdentification} instance, allowing for method chaining
8888
*/
8989
public AULocalAccountIdentification accountNumber(String accountNumber) {
@@ -93,7 +93,7 @@ public AULocalAccountIdentification accountNumber(String accountNumber) {
9393

9494
/**
9595
* The bank account number, without separators or whitespace.
96-
* @return accountNumber
96+
* @return accountNumber The bank account number, without separators or whitespace.
9797
*/
9898
@JsonProperty(JSON_PROPERTY_ACCOUNT_NUMBER)
9999
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -104,7 +104,7 @@ public String getAccountNumber() {
104104
/**
105105
* The bank account number, without separators or whitespace.
106106
*
107-
* @param accountNumber
107+
* @param accountNumber The bank account number, without separators or whitespace.
108108
*/
109109
@JsonProperty(JSON_PROPERTY_ACCOUNT_NUMBER)
110110
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -115,7 +115,7 @@ public void setAccountNumber(String accountNumber) {
115115
/**
116116
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
117117
*
118-
* @param bsbCode
118+
* @param bsbCode The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
119119
* @return the current {@code AULocalAccountIdentification} instance, allowing for method chaining
120120
*/
121121
public AULocalAccountIdentification bsbCode(String bsbCode) {
@@ -125,7 +125,7 @@ public AULocalAccountIdentification bsbCode(String bsbCode) {
125125

126126
/**
127127
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
128-
* @return bsbCode
128+
* @return bsbCode The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
129129
*/
130130
@JsonProperty(JSON_PROPERTY_BSB_CODE)
131131
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -136,7 +136,7 @@ public String getBsbCode() {
136136
/**
137137
* The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
138138
*
139-
* @param bsbCode
139+
* @param bsbCode The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.
140140
*/
141141
@JsonProperty(JSON_PROPERTY_BSB_CODE)
142142
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -147,7 +147,7 @@ public void setBsbCode(String bsbCode) {
147147
/**
148148
* **auLocal**
149149
*
150-
* @param type
150+
* @param type **auLocal**
151151
* @return the current {@code AULocalAccountIdentification} instance, allowing for method chaining
152152
*/
153153
public AULocalAccountIdentification type(TypeEnum type) {
@@ -157,7 +157,7 @@ public AULocalAccountIdentification type(TypeEnum type) {
157157

158158
/**
159159
* **auLocal**
160-
* @return type
160+
* @return type **auLocal**
161161
*/
162162
@JsonProperty(JSON_PROPERTY_TYPE)
163163
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -168,7 +168,7 @@ public TypeEnum getType() {
168168
/**
169169
* **auLocal**
170170
*
171-
* @param type
171+
* @param type **auLocal**
172172
*/
173173
@JsonProperty(JSON_PROPERTY_TYPE)
174174
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

src/main/java/com/adyen/model/balanceplatform/AbstractOpenApiSchema.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
/**
2222
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
2323
*/
24-
2524
public abstract class AbstractOpenApiSchema {
2625

2726
// store the actual instance of the schema/object
@@ -33,6 +32,11 @@ public abstract class AbstractOpenApiSchema {
3332
// schema type (e.g. oneOf, anyOf)
3433
private final String schemaType;
3534

35+
/**
36+
*
37+
* @param schemaType the schema type
38+
* @param isNullable whether the instance is nullable
39+
*/
3640
public AbstractOpenApiSchema(String schemaType, Boolean isNullable) {
3741
this.schemaType = schemaType;
3842
this.isNullable = isNullable;

src/main/java/com/adyen/model/balanceplatform/AccountHolder.java

+33-33
Large diffs are not rendered by default.

src/main/java/com/adyen/model/balanceplatform/AccountHolderCapability.java

+20-20
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ public AccountHolderCapability(
215215

216216
/**
217217
* Indicates whether the capability is allowed. Adyen sets this to **true** if the verification is successful and the account holder is permitted to use the capability.
218-
* @return allowed
218+
* @return allowed Indicates whether the capability is allowed. Adyen sets this to **true** if the verification is successful and the account holder is permitted to use the capability.
219219
*/
220220
@JsonProperty(JSON_PROPERTY_ALLOWED)
221221
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -226,7 +226,7 @@ public Boolean getAllowed() {
226226

227227
/**
228228
* The capability level that is allowed for the account holder. Possible values: **notApplicable**, **low**, **medium**, **high**.
229-
* @return allowedLevel
229+
* @return allowedLevel The capability level that is allowed for the account holder. Possible values: **notApplicable**, **low**, **medium**, **high**.
230230
*/
231231
@JsonProperty(JSON_PROPERTY_ALLOWED_LEVEL)
232232
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -238,7 +238,7 @@ public AllowedLevelEnum getAllowedLevel() {
238238
/**
239239
* allowedSettings
240240
*
241-
* @param allowedSettings
241+
* @param allowedSettings
242242
* @return the current {@code AccountHolderCapability} instance, allowing for method chaining
243243
*/
244244
public AccountHolderCapability allowedSettings(CapabilitySettings allowedSettings) {
@@ -248,7 +248,7 @@ public AccountHolderCapability allowedSettings(CapabilitySettings allowedSetting
248248

249249
/**
250250
* Get allowedSettings
251-
* @return allowedSettings
251+
* @return allowedSettings
252252
*/
253253
@JsonProperty(JSON_PROPERTY_ALLOWED_SETTINGS)
254254
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public CapabilitySettings getAllowedSettings() {
259259
/**
260260
* allowedSettings
261261
*
262-
* @param allowedSettings
262+
* @param allowedSettings
263263
*/
264264
@JsonProperty(JSON_PROPERTY_ALLOWED_SETTINGS)
265265
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -270,7 +270,7 @@ public void setAllowedSettings(CapabilitySettings allowedSettings) {
270270
/**
271271
* Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
272272
*
273-
* @param enabled
273+
* @param enabled Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
274274
* @return the current {@code AccountHolderCapability} instance, allowing for method chaining
275275
*/
276276
public AccountHolderCapability enabled(Boolean enabled) {
@@ -280,7 +280,7 @@ public AccountHolderCapability enabled(Boolean enabled) {
280280

281281
/**
282282
* Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
283-
* @return enabled
283+
* @return enabled Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
284284
*/
285285
@JsonProperty(JSON_PROPERTY_ENABLED)
286286
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -291,7 +291,7 @@ public Boolean getEnabled() {
291291
/**
292292
* Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
293293
*
294-
* @param enabled
294+
* @param enabled Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
295295
*/
296296
@JsonProperty(JSON_PROPERTY_ENABLED)
297297
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -301,7 +301,7 @@ public void setEnabled(Boolean enabled) {
301301

302302
/**
303303
* Contains verification errors and the actions that you can take to resolve them.
304-
* @return problems
304+
* @return problems Contains verification errors and the actions that you can take to resolve them.
305305
*/
306306
@JsonProperty(JSON_PROPERTY_PROBLEMS)
307307
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -313,7 +313,7 @@ public List<CapabilityProblem> getProblems() {
313313
/**
314314
* Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.
315315
*
316-
* @param requested
316+
* @param requested Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.
317317
* @return the current {@code AccountHolderCapability} instance, allowing for method chaining
318318
*/
319319
public AccountHolderCapability requested(Boolean requested) {
@@ -323,7 +323,7 @@ public AccountHolderCapability requested(Boolean requested) {
323323

324324
/**
325325
* Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.
326-
* @return requested
326+
* @return requested Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.
327327
*/
328328
@JsonProperty(JSON_PROPERTY_REQUESTED)
329329
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public Boolean getRequested() {
334334
/**
335335
* Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.
336336
*
337-
* @param requested
337+
* @param requested Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.
338338
*/
339339
@JsonProperty(JSON_PROPERTY_REQUESTED)
340340
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -345,7 +345,7 @@ public void setRequested(Boolean requested) {
345345
/**
346346
* The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
347347
*
348-
* @param requestedLevel
348+
* @param requestedLevel The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
349349
* @return the current {@code AccountHolderCapability} instance, allowing for method chaining
350350
*/
351351
public AccountHolderCapability requestedLevel(RequestedLevelEnum requestedLevel) {
@@ -355,7 +355,7 @@ public AccountHolderCapability requestedLevel(RequestedLevelEnum requestedLevel)
355355

356356
/**
357357
* The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
358-
* @return requestedLevel
358+
* @return requestedLevel The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
359359
*/
360360
@JsonProperty(JSON_PROPERTY_REQUESTED_LEVEL)
361361
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -366,7 +366,7 @@ public RequestedLevelEnum getRequestedLevel() {
366366
/**
367367
* The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
368368
*
369-
* @param requestedLevel
369+
* @param requestedLevel The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
370370
*/
371371
@JsonProperty(JSON_PROPERTY_REQUESTED_LEVEL)
372372
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -377,7 +377,7 @@ public void setRequestedLevel(RequestedLevelEnum requestedLevel) {
377377
/**
378378
* requestedSettings
379379
*
380-
* @param requestedSettings
380+
* @param requestedSettings
381381
* @return the current {@code AccountHolderCapability} instance, allowing for method chaining
382382
*/
383383
public AccountHolderCapability requestedSettings(CapabilitySettings requestedSettings) {
@@ -387,7 +387,7 @@ public AccountHolderCapability requestedSettings(CapabilitySettings requestedSet
387387

388388
/**
389389
* Get requestedSettings
390-
* @return requestedSettings
390+
* @return requestedSettings
391391
*/
392392
@JsonProperty(JSON_PROPERTY_REQUESTED_SETTINGS)
393393
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -398,7 +398,7 @@ public CapabilitySettings getRequestedSettings() {
398398
/**
399399
* requestedSettings
400400
*
401-
* @param requestedSettings
401+
* @param requestedSettings
402402
*/
403403
@JsonProperty(JSON_PROPERTY_REQUESTED_SETTINGS)
404404
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -408,7 +408,7 @@ public void setRequestedSettings(CapabilitySettings requestedSettings) {
408408

409409
/**
410410
* Contains the status of the transfer instruments associated with this capability.
411-
* @return transferInstruments
411+
* @return transferInstruments Contains the status of the transfer instruments associated with this capability.
412412
*/
413413
@JsonProperty(JSON_PROPERTY_TRANSFER_INSTRUMENTS)
414414
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -419,7 +419,7 @@ public List<AccountSupportingEntityCapability> getTransferInstruments() {
419419

420420
/**
421421
* The status of the verification checks for the capability. Possible values: * **pending**: Adyen is running the verification. * **invalid**: The verification failed. Check if the &#x60;errors&#x60; array contains more information. * **valid**: The verification has been successfully completed. * **rejected**: Adyen has verified the information, but found reasons to not allow the capability.
422-
* @return verificationStatus
422+
* @return verificationStatus The status of the verification checks for the capability. Possible values: * **pending**: Adyen is running the verification. * **invalid**: The verification failed. Check if the &#x60;errors&#x60; array contains more information. * **valid**: The verification has been successfully completed. * **rejected**: Adyen has verified the information, but found reasons to not allow the capability.
423423
*/
424424
@JsonProperty(JSON_PROPERTY_VERIFICATION_STATUS)
425425
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

0 commit comments

Comments
 (0)