Skip to content

Commit 8d1151f

Browse files
authored
Regenerate models (#1610)
1 parent eec9753 commit 8d1151f

File tree

198 files changed

+2099
-397
lines changed

Some content is hidden

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

198 files changed

+2099
-397
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,16 @@ public boolean equals(Object o) {
237237
}
238238
AULocalAccountIdentification auLocalAccountIdentification = (AULocalAccountIdentification) o;
239239
return Objects.equals(this.accountNumber, auLocalAccountIdentification.accountNumber)
240+
&& Objects.equals(this.isSetAccountNumber, auLocalAccountIdentification.isSetAccountNumber)
240241
&& Objects.equals(this.bsbCode, auLocalAccountIdentification.bsbCode)
241-
&& Objects.equals(this.type, auLocalAccountIdentification.type);
242+
&& Objects.equals(this.isSetBsbCode, auLocalAccountIdentification.isSetBsbCode)
243+
&& Objects.equals(this.type, auLocalAccountIdentification.type)
244+
&& Objects.equals(this.isSetType, auLocalAccountIdentification.isSetType);
242245
}
243246

244247
@Override
245248
public int hashCode() {
246-
return Objects.hash(accountNumber, bsbCode, type);
249+
return Objects.hash(accountNumber, isSetAccountNumber, bsbCode, isSetBsbCode, type, isSetType);
247250
}
248251

249252
@Override

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

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,36 +758,64 @@ public boolean equals(Object o) {
758758
}
759759
AccountHolder accountHolder = (AccountHolder) o;
760760
return Objects.equals(this.balancePlatform, accountHolder.balancePlatform)
761+
&& Objects.equals(this.isSetBalancePlatform, accountHolder.isSetBalancePlatform)
761762
&& Objects.equals(this.capabilities, accountHolder.capabilities)
763+
&& Objects.equals(this.isSetCapabilities, accountHolder.isSetCapabilities)
762764
&& Objects.equals(this.contactDetails, accountHolder.contactDetails)
765+
&& Objects.equals(this.isSetContactDetails, accountHolder.isSetContactDetails)
763766
&& Objects.equals(this.description, accountHolder.description)
767+
&& Objects.equals(this.isSetDescription, accountHolder.isSetDescription)
764768
&& Objects.equals(this.id, accountHolder.id)
769+
&& Objects.equals(this.isSetId, accountHolder.isSetId)
765770
&& Objects.equals(this.legalEntityId, accountHolder.legalEntityId)
771+
&& Objects.equals(this.isSetLegalEntityId, accountHolder.isSetLegalEntityId)
766772
&& Objects.equals(this.metadata, accountHolder.metadata)
773+
&& Objects.equals(this.isSetMetadata, accountHolder.isSetMetadata)
767774
&& Objects.equals(this.migratedAccountHolderCode, accountHolder.migratedAccountHolderCode)
775+
&& Objects.equals(
776+
this.isSetMigratedAccountHolderCode, accountHolder.isSetMigratedAccountHolderCode)
768777
&& Objects.equals(this.primaryBalanceAccount, accountHolder.primaryBalanceAccount)
778+
&& Objects.equals(this.isSetPrimaryBalanceAccount, accountHolder.isSetPrimaryBalanceAccount)
769779
&& Objects.equals(this.reference, accountHolder.reference)
780+
&& Objects.equals(this.isSetReference, accountHolder.isSetReference)
770781
&& Objects.equals(this.status, accountHolder.status)
782+
&& Objects.equals(this.isSetStatus, accountHolder.isSetStatus)
771783
&& Objects.equals(this.timeZone, accountHolder.timeZone)
772-
&& Objects.equals(this.verificationDeadlines, accountHolder.verificationDeadlines);
784+
&& Objects.equals(this.isSetTimeZone, accountHolder.isSetTimeZone)
785+
&& Objects.equals(this.verificationDeadlines, accountHolder.verificationDeadlines)
786+
&& Objects.equals(
787+
this.isSetVerificationDeadlines, accountHolder.isSetVerificationDeadlines);
773788
}
774789

775790
@Override
776791
public int hashCode() {
777792
return Objects.hash(
778793
balancePlatform,
794+
isSetBalancePlatform,
779795
capabilities,
796+
isSetCapabilities,
780797
contactDetails,
798+
isSetContactDetails,
781799
description,
800+
isSetDescription,
782801
id,
802+
isSetId,
783803
legalEntityId,
804+
isSetLegalEntityId,
784805
metadata,
806+
isSetMetadata,
785807
migratedAccountHolderCode,
808+
isSetMigratedAccountHolderCode,
786809
primaryBalanceAccount,
810+
isSetPrimaryBalanceAccount,
787811
reference,
812+
isSetReference,
788813
status,
814+
isSetStatus,
789815
timeZone,
790-
verificationDeadlines);
816+
isSetTimeZone,
817+
verificationDeadlines,
818+
isSetVerificationDeadlines);
791819
}
792820

793821
@Override

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

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -579,30 +579,53 @@ public boolean equals(Object o) {
579579
}
580580
AccountHolderCapability accountHolderCapability = (AccountHolderCapability) o;
581581
return Objects.equals(this.allowed, accountHolderCapability.allowed)
582+
&& Objects.equals(this.isSetAllowed, accountHolderCapability.isSetAllowed)
582583
&& Objects.equals(this.allowedLevel, accountHolderCapability.allowedLevel)
584+
&& Objects.equals(this.isSetAllowedLevel, accountHolderCapability.isSetAllowedLevel)
583585
&& Objects.equals(this.allowedSettings, accountHolderCapability.allowedSettings)
586+
&& Objects.equals(this.isSetAllowedSettings, accountHolderCapability.isSetAllowedSettings)
584587
&& Objects.equals(this.enabled, accountHolderCapability.enabled)
588+
&& Objects.equals(this.isSetEnabled, accountHolderCapability.isSetEnabled)
585589
&& Objects.equals(this.problems, accountHolderCapability.problems)
590+
&& Objects.equals(this.isSetProblems, accountHolderCapability.isSetProblems)
586591
&& Objects.equals(this.requested, accountHolderCapability.requested)
592+
&& Objects.equals(this.isSetRequested, accountHolderCapability.isSetRequested)
587593
&& Objects.equals(this.requestedLevel, accountHolderCapability.requestedLevel)
594+
&& Objects.equals(this.isSetRequestedLevel, accountHolderCapability.isSetRequestedLevel)
588595
&& Objects.equals(this.requestedSettings, accountHolderCapability.requestedSettings)
596+
&& Objects.equals(
597+
this.isSetRequestedSettings, accountHolderCapability.isSetRequestedSettings)
589598
&& Objects.equals(this.transferInstruments, accountHolderCapability.transferInstruments)
590-
&& Objects.equals(this.verificationStatus, accountHolderCapability.verificationStatus);
599+
&& Objects.equals(
600+
this.isSetTransferInstruments, accountHolderCapability.isSetTransferInstruments)
601+
&& Objects.equals(this.verificationStatus, accountHolderCapability.verificationStatus)
602+
&& Objects.equals(
603+
this.isSetVerificationStatus, accountHolderCapability.isSetVerificationStatus);
591604
}
592605

593606
@Override
594607
public int hashCode() {
595608
return Objects.hash(
596609
allowed,
610+
isSetAllowed,
597611
allowedLevel,
612+
isSetAllowedLevel,
598613
allowedSettings,
614+
isSetAllowedSettings,
599615
enabled,
616+
isSetEnabled,
600617
problems,
618+
isSetProblems,
601619
requested,
620+
isSetRequested,
602621
requestedLevel,
622+
isSetRequestedLevel,
603623
requestedSettings,
624+
isSetRequestedSettings,
604625
transferInstruments,
605-
verificationStatus);
626+
isSetTransferInstruments,
627+
verificationStatus,
628+
isSetVerificationStatus);
606629
}
607630

608631
@Override

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

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,29 +533,48 @@ public boolean equals(Object o) {
533533
}
534534
AccountHolderInfo accountHolderInfo = (AccountHolderInfo) o;
535535
return Objects.equals(this.balancePlatform, accountHolderInfo.balancePlatform)
536+
&& Objects.equals(this.isSetBalancePlatform, accountHolderInfo.isSetBalancePlatform)
536537
&& Objects.equals(this.capabilities, accountHolderInfo.capabilities)
538+
&& Objects.equals(this.isSetCapabilities, accountHolderInfo.isSetCapabilities)
537539
&& Objects.equals(this.contactDetails, accountHolderInfo.contactDetails)
540+
&& Objects.equals(this.isSetContactDetails, accountHolderInfo.isSetContactDetails)
538541
&& Objects.equals(this.description, accountHolderInfo.description)
542+
&& Objects.equals(this.isSetDescription, accountHolderInfo.isSetDescription)
539543
&& Objects.equals(this.legalEntityId, accountHolderInfo.legalEntityId)
544+
&& Objects.equals(this.isSetLegalEntityId, accountHolderInfo.isSetLegalEntityId)
540545
&& Objects.equals(this.metadata, accountHolderInfo.metadata)
546+
&& Objects.equals(this.isSetMetadata, accountHolderInfo.isSetMetadata)
541547
&& Objects.equals(
542548
this.migratedAccountHolderCode, accountHolderInfo.migratedAccountHolderCode)
549+
&& Objects.equals(
550+
this.isSetMigratedAccountHolderCode, accountHolderInfo.isSetMigratedAccountHolderCode)
543551
&& Objects.equals(this.reference, accountHolderInfo.reference)
544-
&& Objects.equals(this.timeZone, accountHolderInfo.timeZone);
552+
&& Objects.equals(this.isSetReference, accountHolderInfo.isSetReference)
553+
&& Objects.equals(this.timeZone, accountHolderInfo.timeZone)
554+
&& Objects.equals(this.isSetTimeZone, accountHolderInfo.isSetTimeZone);
545555
}
546556

547557
@Override
548558
public int hashCode() {
549559
return Objects.hash(
550560
balancePlatform,
561+
isSetBalancePlatform,
551562
capabilities,
563+
isSetCapabilities,
552564
contactDetails,
565+
isSetContactDetails,
553566
description,
567+
isSetDescription,
554568
legalEntityId,
569+
isSetLegalEntityId,
555570
metadata,
571+
isSetMetadata,
556572
migratedAccountHolderCode,
573+
isSetMigratedAccountHolderCode,
557574
reference,
558-
timeZone);
575+
isSetReference,
576+
timeZone,
577+
isSetTimeZone);
559578
}
560579

561580
@Override

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

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,35 +680,62 @@ public boolean equals(Object o) {
680680
}
681681
AccountHolderUpdateRequest accountHolderUpdateRequest = (AccountHolderUpdateRequest) o;
682682
return Objects.equals(this.balancePlatform, accountHolderUpdateRequest.balancePlatform)
683+
&& Objects.equals(
684+
this.isSetBalancePlatform, accountHolderUpdateRequest.isSetBalancePlatform)
683685
&& Objects.equals(this.capabilities, accountHolderUpdateRequest.capabilities)
686+
&& Objects.equals(this.isSetCapabilities, accountHolderUpdateRequest.isSetCapabilities)
684687
&& Objects.equals(this.contactDetails, accountHolderUpdateRequest.contactDetails)
688+
&& Objects.equals(this.isSetContactDetails, accountHolderUpdateRequest.isSetContactDetails)
685689
&& Objects.equals(this.description, accountHolderUpdateRequest.description)
690+
&& Objects.equals(this.isSetDescription, accountHolderUpdateRequest.isSetDescription)
686691
&& Objects.equals(this.metadata, accountHolderUpdateRequest.metadata)
692+
&& Objects.equals(this.isSetMetadata, accountHolderUpdateRequest.isSetMetadata)
687693
&& Objects.equals(
688694
this.migratedAccountHolderCode, accountHolderUpdateRequest.migratedAccountHolderCode)
695+
&& Objects.equals(
696+
this.isSetMigratedAccountHolderCode,
697+
accountHolderUpdateRequest.isSetMigratedAccountHolderCode)
689698
&& Objects.equals(
690699
this.primaryBalanceAccount, accountHolderUpdateRequest.primaryBalanceAccount)
700+
&& Objects.equals(
701+
this.isSetPrimaryBalanceAccount, accountHolderUpdateRequest.isSetPrimaryBalanceAccount)
691702
&& Objects.equals(this.reference, accountHolderUpdateRequest.reference)
703+
&& Objects.equals(this.isSetReference, accountHolderUpdateRequest.isSetReference)
692704
&& Objects.equals(this.status, accountHolderUpdateRequest.status)
705+
&& Objects.equals(this.isSetStatus, accountHolderUpdateRequest.isSetStatus)
693706
&& Objects.equals(this.timeZone, accountHolderUpdateRequest.timeZone)
707+
&& Objects.equals(this.isSetTimeZone, accountHolderUpdateRequest.isSetTimeZone)
708+
&& Objects.equals(
709+
this.verificationDeadlines, accountHolderUpdateRequest.verificationDeadlines)
694710
&& Objects.equals(
695-
this.verificationDeadlines, accountHolderUpdateRequest.verificationDeadlines);
711+
this.isSetVerificationDeadlines, accountHolderUpdateRequest.isSetVerificationDeadlines);
696712
}
697713

698714
@Override
699715
public int hashCode() {
700716
return Objects.hash(
701717
balancePlatform,
718+
isSetBalancePlatform,
702719
capabilities,
720+
isSetCapabilities,
703721
contactDetails,
722+
isSetContactDetails,
704723
description,
724+
isSetDescription,
705725
metadata,
726+
isSetMetadata,
706727
migratedAccountHolderCode,
728+
isSetMigratedAccountHolderCode,
707729
primaryBalanceAccount,
730+
isSetPrimaryBalanceAccount,
708731
reference,
732+
isSetReference,
709733
status,
734+
isSetStatus,
710735
timeZone,
711-
verificationDeadlines);
736+
isSetTimeZone,
737+
verificationDeadlines,
738+
isSetVerificationDeadlines);
712739
}
713740

714741
@Override

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

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,19 +476,43 @@ public boolean equals(Object o) {
476476
AccountSupportingEntityCapability accountSupportingEntityCapability =
477477
(AccountSupportingEntityCapability) o;
478478
return Objects.equals(this.allowed, accountSupportingEntityCapability.allowed)
479+
&& Objects.equals(this.isSetAllowed, accountSupportingEntityCapability.isSetAllowed)
479480
&& Objects.equals(this.allowedLevel, accountSupportingEntityCapability.allowedLevel)
481+
&& Objects.equals(
482+
this.isSetAllowedLevel, accountSupportingEntityCapability.isSetAllowedLevel)
480483
&& Objects.equals(this.enabled, accountSupportingEntityCapability.enabled)
484+
&& Objects.equals(this.isSetEnabled, accountSupportingEntityCapability.isSetEnabled)
481485
&& Objects.equals(this.id, accountSupportingEntityCapability.id)
486+
&& Objects.equals(this.isSetId, accountSupportingEntityCapability.isSetId)
482487
&& Objects.equals(this.requested, accountSupportingEntityCapability.requested)
488+
&& Objects.equals(this.isSetRequested, accountSupportingEntityCapability.isSetRequested)
483489
&& Objects.equals(this.requestedLevel, accountSupportingEntityCapability.requestedLevel)
484490
&& Objects.equals(
485-
this.verificationStatus, accountSupportingEntityCapability.verificationStatus);
491+
this.isSetRequestedLevel, accountSupportingEntityCapability.isSetRequestedLevel)
492+
&& Objects.equals(
493+
this.verificationStatus, accountSupportingEntityCapability.verificationStatus)
494+
&& Objects.equals(
495+
this.isSetVerificationStatus,
496+
accountSupportingEntityCapability.isSetVerificationStatus);
486497
}
487498

488499
@Override
489500
public int hashCode() {
490501
return Objects.hash(
491-
allowed, allowedLevel, enabled, id, requested, requestedLevel, verificationStatus);
502+
allowed,
503+
isSetAllowed,
504+
allowedLevel,
505+
isSetAllowedLevel,
506+
enabled,
507+
isSetEnabled,
508+
id,
509+
isSetId,
510+
requested,
511+
isSetRequested,
512+
requestedLevel,
513+
isSetRequestedLevel,
514+
verificationStatus,
515+
isSetVerificationStatus);
492516
}
493517

494518
@Override

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,14 @@ public boolean equals(Object o) {
149149
ActiveNetworkTokensRestriction activeNetworkTokensRestriction =
150150
(ActiveNetworkTokensRestriction) o;
151151
return Objects.equals(this.operation, activeNetworkTokensRestriction.operation)
152-
&& Objects.equals(this.value, activeNetworkTokensRestriction.value);
152+
&& Objects.equals(this.isSetOperation, activeNetworkTokensRestriction.isSetOperation)
153+
&& Objects.equals(this.value, activeNetworkTokensRestriction.value)
154+
&& Objects.equals(this.isSetValue, activeNetworkTokensRestriction.isSetValue);
153155
}
154156

155157
@Override
156158
public int hashCode() {
157-
return Objects.hash(operation, value);
159+
return Objects.hash(operation, isSetOperation, value, isSetValue);
158160
}
159161

160162
@Override

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,12 +260,14 @@ public boolean equals(Object o) {
260260
}
261261
AdditionalBankIdentification additionalBankIdentification = (AdditionalBankIdentification) o;
262262
return Objects.equals(this.code, additionalBankIdentification.code)
263-
&& Objects.equals(this.type, additionalBankIdentification.type);
263+
&& Objects.equals(this.isSetCode, additionalBankIdentification.isSetCode)
264+
&& Objects.equals(this.type, additionalBankIdentification.type)
265+
&& Objects.equals(this.isSetType, additionalBankIdentification.isSetType);
264266
}
265267

266268
@Override
267269
public int hashCode() {
268-
return Objects.hash(code, type);
270+
return Objects.hash(code, isSetCode, type, isSetType);
269271
}
270272

271273
@Override

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

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,13 +352,25 @@ public boolean equals(Object o) {
352352
return Objects.equals(
353353
this.additionalBankIdentificationType,
354354
additionalBankIdentificationRequirement.additionalBankIdentificationType)
355+
&& Objects.equals(
356+
this.isSetAdditionalBankIdentificationType,
357+
additionalBankIdentificationRequirement.isSetAdditionalBankIdentificationType)
355358
&& Objects.equals(this.description, additionalBankIdentificationRequirement.description)
356-
&& Objects.equals(this.type, additionalBankIdentificationRequirement.type);
359+
&& Objects.equals(
360+
this.isSetDescription, additionalBankIdentificationRequirement.isSetDescription)
361+
&& Objects.equals(this.type, additionalBankIdentificationRequirement.type)
362+
&& Objects.equals(this.isSetType, additionalBankIdentificationRequirement.isSetType);
357363
}
358364

359365
@Override
360366
public int hashCode() {
361-
return Objects.hash(additionalBankIdentificationType, description, type);
367+
return Objects.hash(
368+
additionalBankIdentificationType,
369+
isSetAdditionalBankIdentificationType,
370+
description,
371+
isSetDescription,
372+
type,
373+
isSetType);
362374
}
363375

364376
@Override

0 commit comments

Comments
 (0)