Skip to content

Conversation

@AdyenAutomationBot
Copy link
Collaborator

This PR contains the automated changes for the balanceplatform service.

The commit history of this PR reflects the adyen-openapi commits that have been applied.

@AdyenAutomationBot AdyenAutomationBot requested review from a team as code owners January 5, 2026 15:20
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @AdyenAutomationBot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request delivers an automated refresh of the balanceplatform service's generated code. The changes encompass general code formatting, Javadoc updates, and minor structural adjustments to several model classes, ensuring alignment with the latest OpenAPI specification. A notable change includes the removal of a balance property and improvements to bank account identification deserialization.

Highlights

  • Automated Code Generation Update: This pull request is an automated update to the balanceplatform service, reflecting recent changes from the adyen-openapi specification. It primarily involves regenerating model classes and services.
  • Code Formatting and Readability Improvements: Numerous files received updates to code formatting, Javadoc comments, and import statements, enhancing overall code readability and consistency across the generated models.
  • Balance Model Adjustment: The Balance model has been updated to remove the pendingAvailable property, streamlining the representation of balance information.
  • Enhanced Bank Account Identification Deserialization: The BankAccountAccountIdentification class, which handles various local and international bank account identification types, received updates to its deserialization logic, improving how different identification formats are processed.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request primarily focuses on code formatting and cleanup across multiple Java model files. Key changes include reordering import statements, adding empty lines for better readability, and removing redundant empty lines within Javadoc comments. A significant recurring change, highlighted in review comments, is the removal of trailing semicolons on new lines within equals methods, which were identified as empty statements affecting code readability. This issue, being present in auto-generated code, suggests a need for a fix in the OpenAPI Generator template itself. Additionally, the Balance model had its pendingAvailable property removed, and the BankAccountAccountIdentification model saw extensive import additions related to various local account identification types and JSON processing utilities, along with a refactoring of its setActualInstance method to use JSON.isInstanceOf for type checking against multiple oneOf schemas.

Comment on lines 232 to 238
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)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
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)
;
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);

Comment on lines 611 to 638
return Objects.equals(this.balancePlatform, accountHolder.balancePlatform) &&
Objects.equals(this.isSetBalancePlatform, accountHolder.isSetBalancePlatform) &&
Objects.equals(this.capabilities, accountHolder.capabilities) &&
Objects.equals(this.isSetCapabilities, accountHolder.isSetCapabilities) &&
Objects.equals(this.contactDetails, accountHolder.contactDetails) &&
Objects.equals(this.isSetContactDetails, accountHolder.isSetContactDetails) &&
Objects.equals(this.description, accountHolder.description) &&
Objects.equals(this.isSetDescription, accountHolder.isSetDescription) &&
Objects.equals(this.id, accountHolder.id) &&
Objects.equals(this.isSetId, accountHolder.isSetId) &&
Objects.equals(this.legalEntityId, accountHolder.legalEntityId) &&
Objects.equals(this.isSetLegalEntityId, accountHolder.isSetLegalEntityId) &&
Objects.equals(this.metadata, accountHolder.metadata) &&
Objects.equals(this.isSetMetadata, accountHolder.isSetMetadata) &&
Objects.equals(this.migratedAccountHolderCode, accountHolder.migratedAccountHolderCode) &&
Objects.equals(this.isSetMigratedAccountHolderCode, accountHolder.isSetMigratedAccountHolderCode) &&
Objects.equals(this.primaryBalanceAccount, accountHolder.primaryBalanceAccount) &&
Objects.equals(this.isSetPrimaryBalanceAccount, accountHolder.isSetPrimaryBalanceAccount) &&
Objects.equals(this.reference, accountHolder.reference) &&
Objects.equals(this.isSetReference, accountHolder.isSetReference) &&
Objects.equals(this.status, accountHolder.status) &&
Objects.equals(this.isSetStatus, accountHolder.isSetStatus) &&
Objects.equals(this.timeZone, accountHolder.timeZone) &&
Objects.equals(this.isSetTimeZone, accountHolder.isSetTimeZone) &&
Objects.equals(this.verificationDeadlines, accountHolder.verificationDeadlines) &&
Objects.equals(this.isSetVerificationDeadlines, accountHolder.isSetVerificationDeadlines)
;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

    return Objects.equals(this.balancePlatform, accountHolder.balancePlatform) &&
        Objects.equals(this.isSetBalancePlatform, accountHolder.isSetBalancePlatform) &&
        Objects.equals(this.capabilities, accountHolder.capabilities) &&
        Objects.equals(this.isSetCapabilities, accountHolder.isSetCapabilities) &&
        Objects.equals(this.contactDetails, accountHolder.contactDetails) &&
        Objects.equals(this.isSetContactDetails, accountHolder.isSetContactDetails) &&
        Objects.equals(this.description, accountHolder.description) &&
        Objects.equals(this.isSetDescription, accountHolder.isSetDescription) &&
        Objects.equals(this.id, accountHolder.id) &&
        Objects.equals(this.isSetId, accountHolder.isSetId) &&
        Objects.equals(this.legalEntityId, accountHolder.legalEntityId) &&
        Objects.equals(this.isSetLegalEntityId, accountHolder.isSetLegalEntityId) &&
        Objects.equals(this.metadata, accountHolder.metadata) &&
        Objects.equals(this.isSetMetadata, accountHolder.isSetMetadata) &&
        Objects.equals(this.migratedAccountHolderCode, accountHolder.migratedAccountHolderCode) &&
        Objects.equals(this.isSetMigratedAccountHolderCode, accountHolder.isSetMigratedAccountHolderCode) &&
        Objects.equals(this.primaryBalanceAccount, accountHolder.primaryBalanceAccount) &&
        Objects.equals(this.isSetPrimaryBalanceAccount, accountHolder.isSetPrimaryBalanceAccount) &&
        Objects.equals(this.reference, accountHolder.reference) &&
        Objects.equals(this.isSetReference, accountHolder.isSetReference) &&
        Objects.equals(this.status, accountHolder.status) &&
        Objects.equals(this.isSetStatus, accountHolder.isSetStatus) &&
        Objects.equals(this.timeZone, accountHolder.timeZone) &&
        Objects.equals(this.isSetTimeZone, accountHolder.isSetTimeZone) &&
        Objects.equals(this.verificationDeadlines, accountHolder.verificationDeadlines) &&
        Objects.equals(this.isSetVerificationDeadlines, accountHolder.isSetVerificationDeadlines);

Comment on lines 512 to 532
return Objects.equals(this.allowed, accountHolderCapability.allowed) &&
Objects.equals(this.isSetAllowed, accountHolderCapability.isSetAllowed) &&
Objects.equals(this.allowedLevel, accountHolderCapability.allowedLevel) &&
Objects.equals(this.isSetAllowedLevel, accountHolderCapability.isSetAllowedLevel) &&
Objects.equals(this.allowedSettings, accountHolderCapability.allowedSettings) &&
Objects.equals(this.isSetAllowedSettings, accountHolderCapability.isSetAllowedSettings) &&
Objects.equals(this.enabled, accountHolderCapability.enabled) &&
Objects.equals(this.isSetEnabled, accountHolderCapability.isSetEnabled) &&
Objects.equals(this.problems, accountHolderCapability.problems) &&
Objects.equals(this.isSetProblems, accountHolderCapability.isSetProblems) &&
Objects.equals(this.requested, accountHolderCapability.requested) &&
Objects.equals(this.isSetRequested, accountHolderCapability.isSetRequested) &&
Objects.equals(this.requestedLevel, accountHolderCapability.requestedLevel) &&
Objects.equals(this.isSetRequestedLevel, accountHolderCapability.isSetRequestedLevel) &&
Objects.equals(this.requestedSettings, accountHolderCapability.requestedSettings) &&
Objects.equals(this.isSetRequestedSettings, accountHolderCapability.isSetRequestedSettings) &&
Objects.equals(this.transferInstruments, accountHolderCapability.transferInstruments) &&
Objects.equals(this.isSetTransferInstruments, accountHolderCapability.isSetTransferInstruments) &&
Objects.equals(this.verificationStatus, accountHolderCapability.verificationStatus) &&
Objects.equals(this.isSetVerificationStatus, accountHolderCapability.isSetVerificationStatus)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.allowed, accountHolderCapability.allowed) &&
Objects.equals(this.isSetAllowed, accountHolderCapability.isSetAllowed) &&
Objects.equals(this.allowedLevel, accountHolderCapability.allowedLevel) &&
Objects.equals(this.isSetAllowedLevel, accountHolderCapability.isSetAllowedLevel) &&
Objects.equals(this.allowedSettings, accountHolderCapability.allowedSettings) &&
Objects.equals(this.isSetAllowedSettings, accountHolderCapability.isSetAllowedSettings) &&
Objects.equals(this.enabled, accountHolderCapability.enabled) &&
Objects.equals(this.isSetEnabled, accountHolderCapability.isSetEnabled) &&
Objects.equals(this.problems, accountHolderCapability.problems) &&
Objects.equals(this.isSetProblems, accountHolderCapability.isSetProblems) &&
Objects.equals(this.requested, accountHolderCapability.requested) &&
Objects.equals(this.isSetRequested, accountHolderCapability.isSetRequested) &&
Objects.equals(this.requestedLevel, accountHolderCapability.requestedLevel) &&
Objects.equals(this.isSetRequestedLevel, accountHolderCapability.isSetRequestedLevel) &&
Objects.equals(this.requestedSettings, accountHolderCapability.requestedSettings) &&
Objects.equals(this.isSetRequestedSettings, accountHolderCapability.isSetRequestedSettings) &&
Objects.equals(this.transferInstruments, accountHolderCapability.transferInstruments) &&
Objects.equals(this.isSetTransferInstruments, accountHolderCapability.isSetTransferInstruments) &&
Objects.equals(this.verificationStatus, accountHolderCapability.verificationStatus) &&
Objects.equals(this.isSetVerificationStatus, accountHolderCapability.isSetVerificationStatus)
;
return Objects.equals(this.allowed, accountHolderCapability.allowed) &&
Objects.equals(this.isSetAllowed, accountHolderCapability.isSetAllowed) &&
Objects.equals(this.allowedLevel, accountHolderCapability.allowedLevel) &&
Objects.equals(this.isSetAllowedLevel, accountHolderCapability.isSetAllowedLevel) &&
Objects.equals(this.allowedSettings, accountHolderCapability.allowedSettings) &&
Objects.equals(this.isSetAllowedSettings, accountHolderCapability.isSetAllowedSettings) &&
Objects.equals(this.enabled, accountHolderCapability.enabled) &&
Objects.equals(this.isSetEnabled, accountHolderCapability.isSetEnabled) &&
Objects.equals(this.problems, accountHolderCapability.problems) &&
Objects.equals(this.isSetProblems, accountHolderCapability.isSetProblems) &&
Objects.equals(this.requested, accountHolderCapability.requested) &&
Objects.equals(this.isSetRequested, accountHolderCapability.isSetRequested) &&
Objects.equals(this.requestedLevel, accountHolderCapability.requestedLevel) &&
Objects.equals(this.isSetRequestedLevel, accountHolderCapability.isSetRequestedLevel) &&
Objects.equals(this.requestedSettings, accountHolderCapability.requestedSettings) &&
Objects.equals(this.isSetRequestedSettings, accountHolderCapability.isSetRequestedSettings) &&
Objects.equals(this.transferInstruments, accountHolderCapability.transferInstruments) &&
Objects.equals(this.isSetTransferInstruments, accountHolderCapability.isSetTransferInstruments) &&
Objects.equals(this.verificationStatus, accountHolderCapability.verificationStatus) &&
Objects.equals(this.isSetVerificationStatus, accountHolderCapability.isSetVerificationStatus);

Comment on lines 448 to 466
return Objects.equals(this.balancePlatform, accountHolderInfo.balancePlatform) &&
Objects.equals(this.isSetBalancePlatform, accountHolderInfo.isSetBalancePlatform) &&
Objects.equals(this.capabilities, accountHolderInfo.capabilities) &&
Objects.equals(this.isSetCapabilities, accountHolderInfo.isSetCapabilities) &&
Objects.equals(this.contactDetails, accountHolderInfo.contactDetails) &&
Objects.equals(this.isSetContactDetails, accountHolderInfo.isSetContactDetails) &&
Objects.equals(this.description, accountHolderInfo.description) &&
Objects.equals(this.isSetDescription, accountHolderInfo.isSetDescription) &&
Objects.equals(this.legalEntityId, accountHolderInfo.legalEntityId) &&
Objects.equals(this.isSetLegalEntityId, accountHolderInfo.isSetLegalEntityId) &&
Objects.equals(this.metadata, accountHolderInfo.metadata) &&
Objects.equals(this.isSetMetadata, accountHolderInfo.isSetMetadata) &&
Objects.equals(this.migratedAccountHolderCode, accountHolderInfo.migratedAccountHolderCode) &&
Objects.equals(this.isSetMigratedAccountHolderCode, accountHolderInfo.isSetMigratedAccountHolderCode) &&
Objects.equals(this.reference, accountHolderInfo.reference) &&
Objects.equals(this.isSetReference, accountHolderInfo.isSetReference) &&
Objects.equals(this.timeZone, accountHolderInfo.timeZone) &&
Objects.equals(this.isSetTimeZone, accountHolderInfo.isSetTimeZone)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.balancePlatform, accountHolderInfo.balancePlatform) &&
Objects.equals(this.isSetBalancePlatform, accountHolderInfo.isSetBalancePlatform) &&
Objects.equals(this.capabilities, accountHolderInfo.capabilities) &&
Objects.equals(this.isSetCapabilities, accountHolderInfo.isSetCapabilities) &&
Objects.equals(this.contactDetails, accountHolderInfo.contactDetails) &&
Objects.equals(this.isSetContactDetails, accountHolderInfo.isSetContactDetails) &&
Objects.equals(this.description, accountHolderInfo.description) &&
Objects.equals(this.isSetDescription, accountHolderInfo.isSetDescription) &&
Objects.equals(this.legalEntityId, accountHolderInfo.legalEntityId) &&
Objects.equals(this.isSetLegalEntityId, accountHolderInfo.isSetLegalEntityId) &&
Objects.equals(this.metadata, accountHolderInfo.metadata) &&
Objects.equals(this.isSetMetadata, accountHolderInfo.isSetMetadata) &&
Objects.equals(this.migratedAccountHolderCode, accountHolderInfo.migratedAccountHolderCode) &&
Objects.equals(this.isSetMigratedAccountHolderCode, accountHolderInfo.isSetMigratedAccountHolderCode) &&
Objects.equals(this.reference, accountHolderInfo.reference) &&
Objects.equals(this.isSetReference, accountHolderInfo.isSetReference) &&
Objects.equals(this.timeZone, accountHolderInfo.timeZone) &&
Objects.equals(this.isSetTimeZone, accountHolderInfo.isSetTimeZone)
;
return Objects.equals(this.balancePlatform, accountHolderInfo.balancePlatform) &&
Objects.equals(this.isSetBalancePlatform, accountHolderInfo.isSetBalancePlatform) &&
Objects.equals(this.capabilities, accountHolderInfo.capabilities) &&
Objects.equals(this.isSetCapabilities, accountHolderInfo.isSetCapabilities) &&
Objects.equals(this.contactDetails, accountHolderInfo.contactDetails) &&
Objects.equals(this.isSetContactDetails, accountHolderInfo.isSetContactDetails) &&
Objects.equals(this.description, accountHolderInfo.description) &&
Objects.equals(this.isSetDescription, accountHolderInfo.isSetDescription) &&
Objects.equals(this.legalEntityId, accountHolderInfo.legalEntityId) &&
Objects.equals(this.isSetLegalEntityId, accountHolderInfo.isSetLegalEntityId) &&
Objects.equals(this.metadata, accountHolderInfo.metadata) &&
Objects.equals(this.isSetMetadata, accountHolderInfo.isSetMetadata) &&
Objects.equals(this.migratedAccountHolderCode, accountHolderInfo.migratedAccountHolderCode) &&
Objects.equals(this.isSetMigratedAccountHolderCode, accountHolderInfo.isSetMigratedAccountHolderCode) &&
Objects.equals(this.reference, accountHolderInfo.reference) &&
Objects.equals(this.isSetReference, accountHolderInfo.isSetReference) &&
Objects.equals(this.timeZone, accountHolderInfo.timeZone) &&
Objects.equals(this.isSetTimeZone, accountHolderInfo.isSetTimeZone);

Comment on lines 552 to 574
return Objects.equals(this.balancePlatform, accountHolderUpdateRequest.balancePlatform) &&
Objects.equals(this.isSetBalancePlatform, accountHolderUpdateRequest.isSetBalancePlatform) &&
Objects.equals(this.capabilities, accountHolderUpdateRequest.capabilities) &&
Objects.equals(this.isSetCapabilities, accountHolderUpdateRequest.isSetCapabilities) &&
Objects.equals(this.contactDetails, accountHolderUpdateRequest.contactDetails) &&
Objects.equals(this.isSetContactDetails, accountHolderUpdateRequest.isSetContactDetails) &&
Objects.equals(this.description, accountHolderUpdateRequest.description) &&
Objects.equals(this.isSetDescription, accountHolderUpdateRequest.isSetDescription) &&
Objects.equals(this.metadata, accountHolderUpdateRequest.metadata) &&
Objects.equals(this.isSetMetadata, accountHolderUpdateRequest.isSetMetadata) &&
Objects.equals(this.migratedAccountHolderCode, accountHolderUpdateRequest.migratedAccountHolderCode) &&
Objects.equals(this.isSetMigratedAccountHolderCode, accountHolderUpdateRequest.isSetMigratedAccountHolderCode) &&
Objects.equals(this.primaryBalanceAccount, accountHolderUpdateRequest.primaryBalanceAccount) &&
Objects.equals(this.isSetPrimaryBalanceAccount, accountHolderUpdateRequest.isSetPrimaryBalanceAccount) &&
Objects.equals(this.reference, accountHolderUpdateRequest.reference) &&
Objects.equals(this.isSetReference, accountHolderUpdateRequest.isSetReference) &&
Objects.equals(this.status, accountHolderUpdateRequest.status) &&
Objects.equals(this.isSetStatus, accountHolderUpdateRequest.isSetStatus) &&
Objects.equals(this.timeZone, accountHolderUpdateRequest.timeZone) &&
Objects.equals(this.isSetTimeZone, accountHolderUpdateRequest.isSetTimeZone) &&
Objects.equals(this.verificationDeadlines, accountHolderUpdateRequest.verificationDeadlines) &&
Objects.equals(this.isSetVerificationDeadlines, accountHolderUpdateRequest.isSetVerificationDeadlines)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

    return Objects.equals(this.balancePlatform, accountHolderUpdateRequest.balancePlatform) &&
        Objects.equals(this.isSetBalancePlatform, accountHolderUpdateRequest.isSetBalancePlatform) &&
        Objects.equals(this.capabilities, accountHolderUpdateRequest.capabilities) &&
        Objects.equals(this.isSetCapabilities, accountHolderUpdateRequest.isSetCapabilities) &&
        Objects.equals(this.contactDetails, accountHolderUpdateRequest.contactDetails) &&
        Objects.equals(this.isSetContactDetails, accountHolderUpdateRequest.isSetContactDetails) &&
        Objects.equals(this.description, accountHolderUpdateRequest.description) &&
        Objects.equals(this.isSetDescription, accountHolderUpdateRequest.isSetDescription) &&
        Objects.equals(this.metadata, accountHolderUpdateRequest.metadata) &&
        Objects.equals(this.isSetMetadata, accountHolderUpdateRequest.isSetMetadata) &&
        Objects.equals(this.migratedAccountHolderCode, accountHolderUpdateRequest.migratedAccountHolderCode) &&
        Objects.equals(this.isSetMigratedAccountHolderCode, accountHolderUpdateRequest.isSetMigratedAccountHolderCode) &&
        Objects.equals(this.primaryBalanceAccount, accountHolderUpdateRequest.primaryBalanceAccount) &&
        Objects.equals(this.isSetPrimaryBalanceAccount, accountHolderUpdateRequest.isSetPrimaryBalanceAccount) &&
        Objects.equals(this.reference, accountHolderUpdateRequest.reference) &&
        Objects.equals(this.isSetReference, accountHolderUpdateRequest.isSetReference) &&
        Objects.equals(this.status, accountHolderUpdateRequest.status) &&
        Objects.equals(this.isSetStatus, accountHolderUpdateRequest.isSetStatus) &&
        Objects.equals(this.timeZone, accountHolderUpdateRequest.timeZone) &&
        Objects.equals(this.isSetTimeZone, accountHolderUpdateRequest.isSetTimeZone) &&
        Objects.equals(this.verificationDeadlines, accountHolderUpdateRequest.verificationDeadlines) &&
        Objects.equals(this.isSetVerificationDeadlines, accountHolderUpdateRequest.isSetVerificationDeadlines);

Comment on lines 364 to 374
return Objects.equals(this.conditions, balanceWebhookSettingInfoUpdate.conditions) &&
Objects.equals(this.isSetConditions, balanceWebhookSettingInfoUpdate.isSetConditions) &&
Objects.equals(this.currency, balanceWebhookSettingInfoUpdate.currency) &&
Objects.equals(this.isSetCurrency, balanceWebhookSettingInfoUpdate.isSetCurrency) &&
Objects.equals(this.status, balanceWebhookSettingInfoUpdate.status) &&
Objects.equals(this.isSetStatus, balanceWebhookSettingInfoUpdate.isSetStatus) &&
Objects.equals(this.target, balanceWebhookSettingInfoUpdate.target) &&
Objects.equals(this.isSetTarget, balanceWebhookSettingInfoUpdate.isSetTarget) &&
Objects.equals(this.type, balanceWebhookSettingInfoUpdate.type) &&
Objects.equals(this.isSetType, balanceWebhookSettingInfoUpdate.isSetType)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.conditions, balanceWebhookSettingInfoUpdate.conditions) &&
Objects.equals(this.isSetConditions, balanceWebhookSettingInfoUpdate.isSetConditions) &&
Objects.equals(this.currency, balanceWebhookSettingInfoUpdate.currency) &&
Objects.equals(this.isSetCurrency, balanceWebhookSettingInfoUpdate.isSetCurrency) &&
Objects.equals(this.status, balanceWebhookSettingInfoUpdate.status) &&
Objects.equals(this.isSetStatus, balanceWebhookSettingInfoUpdate.isSetStatus) &&
Objects.equals(this.target, balanceWebhookSettingInfoUpdate.target) &&
Objects.equals(this.isSetTarget, balanceWebhookSettingInfoUpdate.isSetTarget) &&
Objects.equals(this.type, balanceWebhookSettingInfoUpdate.type) &&
Objects.equals(this.isSetType, balanceWebhookSettingInfoUpdate.isSetType)
;
return Objects.equals(this.conditions, balanceWebhookSettingInfoUpdate.conditions) &&
Objects.equals(this.isSetConditions, balanceWebhookSettingInfoUpdate.isSetConditions) &&
Objects.equals(this.currency, balanceWebhookSettingInfoUpdate.currency) &&
Objects.equals(this.isSetCurrency, balanceWebhookSettingInfoUpdate.isSetCurrency) &&
Objects.equals(this.status, balanceWebhookSettingInfoUpdate.status) &&
Objects.equals(this.isSetStatus, balanceWebhookSettingInfoUpdate.isSetStatus) &&
Objects.equals(this.target, balanceWebhookSettingInfoUpdate.target) &&
Objects.equals(this.isSetTarget, balanceWebhookSettingInfoUpdate.isSetTarget) &&
Objects.equals(this.type, balanceWebhookSettingInfoUpdate.type) &&
Objects.equals(this.isSetType, balanceWebhookSettingInfoUpdate.isSetType);

Comment on lines 115 to 117
return Objects.equals(this.accountIdentification, bankAccount.accountIdentification) &&
Objects.equals(this.isSetAccountIdentification, bankAccount.isSetAccountIdentification)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.accountIdentification, bankAccount.accountIdentification) &&
Objects.equals(this.isSetAccountIdentification, bankAccount.isSetAccountIdentification)
;
return Objects.equals(this.accountIdentification, bankAccount.accountIdentification) &&
Objects.equals(this.isSetAccountIdentification, bankAccount.isSetAccountIdentification);

Comment on lines 394 to 410
return Objects.equals(this.accountNumber, bankAccountDetails.accountNumber) &&
Objects.equals(this.isSetAccountNumber, bankAccountDetails.isSetAccountNumber) &&
Objects.equals(this.accountType, bankAccountDetails.accountType) &&
Objects.equals(this.isSetAccountType, bankAccountDetails.isSetAccountType) &&
Objects.equals(this.branchNumber, bankAccountDetails.branchNumber) &&
Objects.equals(this.isSetBranchNumber, bankAccountDetails.isSetBranchNumber) &&
Objects.equals(this.formFactor, bankAccountDetails.formFactor) &&
Objects.equals(this.isSetFormFactor, bankAccountDetails.isSetFormFactor) &&
Objects.equals(this.iban, bankAccountDetails.iban) &&
Objects.equals(this.isSetIban, bankAccountDetails.isSetIban) &&
Objects.equals(this.routingNumber, bankAccountDetails.routingNumber) &&
Objects.equals(this.isSetRoutingNumber, bankAccountDetails.isSetRoutingNumber) &&
Objects.equals(this.sortCode, bankAccountDetails.sortCode) &&
Objects.equals(this.isSetSortCode, bankAccountDetails.isSetSortCode) &&
Objects.equals(this.type, bankAccountDetails.type) &&
Objects.equals(this.isSetType, bankAccountDetails.isSetType)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.accountNumber, bankAccountDetails.accountNumber) &&
Objects.equals(this.isSetAccountNumber, bankAccountDetails.isSetAccountNumber) &&
Objects.equals(this.accountType, bankAccountDetails.accountType) &&
Objects.equals(this.isSetAccountType, bankAccountDetails.isSetAccountType) &&
Objects.equals(this.branchNumber, bankAccountDetails.branchNumber) &&
Objects.equals(this.isSetBranchNumber, bankAccountDetails.isSetBranchNumber) &&
Objects.equals(this.formFactor, bankAccountDetails.formFactor) &&
Objects.equals(this.isSetFormFactor, bankAccountDetails.isSetFormFactor) &&
Objects.equals(this.iban, bankAccountDetails.iban) &&
Objects.equals(this.isSetIban, bankAccountDetails.isSetIban) &&
Objects.equals(this.routingNumber, bankAccountDetails.routingNumber) &&
Objects.equals(this.isSetRoutingNumber, bankAccountDetails.isSetRoutingNumber) &&
Objects.equals(this.sortCode, bankAccountDetails.sortCode) &&
Objects.equals(this.isSetSortCode, bankAccountDetails.isSetSortCode) &&
Objects.equals(this.type, bankAccountDetails.type) &&
Objects.equals(this.isSetType, bankAccountDetails.isSetType)
;
return Objects.equals(this.accountNumber, bankAccountDetails.accountNumber) &&
Objects.equals(this.isSetAccountNumber, bankAccountDetails.isSetAccountNumber) &&
Objects.equals(this.accountType, bankAccountDetails.accountType) &&
Objects.equals(this.isSetAccountType, bankAccountDetails.isSetAccountType) &&
Objects.equals(this.branchNumber, bankAccountDetails.branchNumber) &&
Objects.equals(this.isSetBranchNumber, bankAccountDetails.isSetBranchNumber) &&
Objects.equals(this.formFactor, bankAccountDetails.formFactor) &&
Objects.equals(this.isSetFormFactor, bankAccountDetails.isSetFormFactor) &&
Objects.equals(this.iban, bankAccountDetails.iban) &&
Objects.equals(this.isSetIban, bankAccountDetails.isSetIban) &&
Objects.equals(this.routingNumber, bankAccountDetails.routingNumber) &&
Objects.equals(this.isSetRoutingNumber, bankAccountDetails.isSetRoutingNumber) &&
Objects.equals(this.sortCode, bankAccountDetails.sortCode) &&
Objects.equals(this.isSetSortCode, bankAccountDetails.isSetSortCode) &&
Objects.equals(this.type, bankAccountDetails.type) &&
Objects.equals(this.isSetType, bankAccountDetails.isSetType);

Comment on lines 312 to 318
return Objects.equals(this.bankAccountIdentificationTypes, bankAccountIdentificationTypeRequirement.bankAccountIdentificationTypes) &&
Objects.equals(this.isSetBankAccountIdentificationTypes, bankAccountIdentificationTypeRequirement.isSetBankAccountIdentificationTypes) &&
Objects.equals(this.description, bankAccountIdentificationTypeRequirement.description) &&
Objects.equals(this.isSetDescription, bankAccountIdentificationTypeRequirement.isSetDescription) &&
Objects.equals(this.type, bankAccountIdentificationTypeRequirement.type) &&
Objects.equals(this.isSetType, bankAccountIdentificationTypeRequirement.isSetType)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.bankAccountIdentificationTypes, bankAccountIdentificationTypeRequirement.bankAccountIdentificationTypes) &&
Objects.equals(this.isSetBankAccountIdentificationTypes, bankAccountIdentificationTypeRequirement.isSetBankAccountIdentificationTypes) &&
Objects.equals(this.description, bankAccountIdentificationTypeRequirement.description) &&
Objects.equals(this.isSetDescription, bankAccountIdentificationTypeRequirement.isSetDescription) &&
Objects.equals(this.type, bankAccountIdentificationTypeRequirement.type) &&
Objects.equals(this.isSetType, bankAccountIdentificationTypeRequirement.isSetType)
;
return Objects.equals(this.bankAccountIdentificationTypes, bankAccountIdentificationTypeRequirement.bankAccountIdentificationTypes) &&
Objects.equals(this.isSetBankAccountIdentificationTypes, bankAccountIdentificationTypeRequirement.isSetBankAccountIdentificationTypes) &&
Objects.equals(this.description, bankAccountIdentificationTypeRequirement.description) &&
Objects.equals(this.isSetDescription, bankAccountIdentificationTypeRequirement.isSetDescription) &&
Objects.equals(this.type, bankAccountIdentificationTypeRequirement.type) &&
Objects.equals(this.isSetType, bankAccountIdentificationTypeRequirement.isSetType);

Comment on lines 115 to 117
return Objects.equals(this.accountIdentification, bankAccountIdentificationValidationRequest.accountIdentification) &&
Objects.equals(this.isSetAccountIdentification, bankAccountIdentificationValidationRequest.isSetAccountIdentification)
;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The equals method has a trailing semicolon on a new line, which is an empty statement. This affects code readability and should be removed. The semicolon should be at the end of the return statement. Since this is auto-generated code, this issue should ideally be fixed in the generator template.

Suggested change
return Objects.equals(this.accountIdentification, bankAccountIdentificationValidationRequest.accountIdentification) &&
Objects.equals(this.isSetAccountIdentification, bankAccountIdentificationValidationRequest.isSetAccountIdentification)
;
return Objects.equals(this.accountIdentification, bankAccountIdentificationValidationRequest.accountIdentification) &&
Objects.equals(this.isSetAccountIdentification, bankAccountIdentificationValidationRequest.isSetAccountIdentification);

@AdyenAutomationBot AdyenAutomationBot force-pushed the sdk-automation/balanceplatform branch 3 times, most recently from 67a271a to 9763301 Compare January 8, 2026 12:04
@AdyenAutomationBot AdyenAutomationBot force-pushed the sdk-automation/balanceplatform branch from b26247f to 426fcf1 Compare January 8, 2026 14:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants