Skip to content

Commit 2f4cd50

Browse files
author
Adyen Automation
committed
false[adyen-sdk-automation] automated change
1 parent ff99db3 commit 2f4cd50

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/main/java/com/adyen/model/legalentitymanagement/IdentificationData.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class IdentificationData {
6161
private String number;
6262

6363
/**
64-
* Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber
64+
* Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber**
6565
*/
6666
public enum TypeEnum {
6767
NATIONALIDNUMBER("nationalIdNumber"),
@@ -295,10 +295,10 @@ public IdentificationData type(TypeEnum type) {
295295
}
296296

297297
/**
298-
* Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber
298+
* Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber**
299299
* @return type
300300
**/
301-
@ApiModelProperty(required = true, value = "Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber")
301+
@ApiModelProperty(required = true, value = "Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber**")
302302
@JsonProperty(JSON_PROPERTY_TYPE)
303303
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
304304

@@ -308,7 +308,7 @@ public TypeEnum getType() {
308308

309309

310310
/**
311-
* Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber
311+
* Type of identity data. For individuals, the following types are supported: - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber**
312312
*
313313
* @param type
314314
*/

src/main/java/com/adyen/model/legalentitymanagement/VerificationError.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public static CapabilitiesEnum fromValue(String value) {
191191
private List<VerificationErrorRecursive> subErrors = null;
192192

193193
/**
194-
* The type of error.
194+
* The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview**
195195
*/
196196
public enum TypeEnum {
197197
DATAMISSING("dataMissing"),
@@ -417,10 +417,10 @@ public VerificationError type(TypeEnum type) {
417417
}
418418

419419
/**
420-
* The type of error.
420+
* The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview**
421421
* @return type
422422
**/
423-
@ApiModelProperty(value = "The type of error.")
423+
@ApiModelProperty(value = "The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview** ")
424424
@JsonProperty(JSON_PROPERTY_TYPE)
425425
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
426426

@@ -430,7 +430,7 @@ public TypeEnum getType() {
430430

431431

432432
/**
433-
* The type of error.
433+
* The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview**
434434
*
435435
* @param type
436436
*/

src/main/java/com/adyen/model/legalentitymanagement/VerificationErrorRecursive.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public static CapabilitiesEnum fromValue(String value) {
184184
private String message;
185185

186186
/**
187-
* The type of error.
187+
* The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview**
188188
*/
189189
public enum TypeEnum {
190190
DATAMISSING("dataMissing"),
@@ -337,10 +337,10 @@ public VerificationErrorRecursive type(TypeEnum type) {
337337
}
338338

339339
/**
340-
* The type of error.
340+
* The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview**
341341
* @return type
342342
**/
343-
@ApiModelProperty(value = "The type of error.")
343+
@ApiModelProperty(value = "The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview** ")
344344
@JsonProperty(JSON_PROPERTY_TYPE)
345345
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
346346

@@ -350,7 +350,7 @@ public TypeEnum getType() {
350350

351351

352352
/**
353-
* The type of error.
353+
* The type of error. Possible values: * **invalidInput** * **dataMissing** * **pendingStatus** * **rejected** * **dataReview**
354354
*
355355
* @param type
356356
*/

0 commit comments

Comments
 (0)