Skip to content

Conversation

@AdyenAutomationBot
Copy link
Collaborator

This PR contains the automated changes for the configurationwebhooks 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 automated code updates for the configurationwebhooks service, encompassing modifications to various models and services. The changes primarily involve reformatting, documentation enhancements, and adjustments to annotations, ensuring the codebase remains up-to-date with the latest API definitions.

Highlights

  • Code Generation Update: This PR updates the services and models for the configurationwebhooks service through automated code generation.
  • AbstractOpenApiSchema Modification: The AbstractOpenApiSchema.java file has been modified with some reformatting and whitespace changes.
  • AccountHolder Model Changes: The AccountHolder.java model has been updated with changes including deprecated fields, reformatting, and adjustments to documentation and annotations.
  • AccountHolderCapability Model Changes: The AccountHolderCapability.java model has been updated with similar changes to AccountHolder.java, including reformatting, documentation updates, and annotation adjustments.
  • Other Model Updates: Several other models such as AccountHolderNotificationData.java, AccountHolderNotificationRequest.java, AccountSupportingEntityCapability.java, Address.java, Amount.java, Authentication.java, Balance.java, BalanceAccount.java, BalanceAccountNotificationData.java, Card.java, CardConfiguration.java, CardOrderItem.java, CardOrderItemDeliveryStatus.java, NetworkTokenNotificationDataV2.java, NetworkTokenRequestor.java, NetworkTokenRiskRuleData.java, NetworkTokenTriggeredRiskRule.java, PaymentInstrument.java, PaymentInstrumentAdditionalBankAccountIdentificationsInner.java, PhoneNumber.java, PlatformPaymentConfiguration.java, RemediatingAction.java, Resource.java, ResourceReference.java, ScoreNotificationRequest.java, SweepConfigurationNotificationData.java and SweepConfigurationNotificationRequest.java have been updated with similar changes.

🧠 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, an automated update from a code generator, introduces several formatting issues that reduce code readability. The most common problems are excessive blank lines and extremely long single-line hashCode methods. While the change to 4-space indentation is a good improvement, these formatting regressions should be addressed in the generator. I've added comments on a few examples, but these issues are widespread across the modified files.

Comment on lines 150 to 152



Copy link
Contributor

Choose a reason for hiding this comment

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

medium

These extra blank lines should be removed. This pattern of excessive newlines appears in multiple places throughout the file, reducing readability.

status,
timeZone,
verificationDeadlines);
return Objects.hash(balancePlatform, capabilities, contactDetails, description, id, legalEntityId, metadata, migratedAccountHolderCode, primaryBalanceAccount, reference, status, timeZone, verificationDeadlines);
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

This line is excessively long, which harms readability. It's better to break it into multiple lines, similar to the previous version of this method.

Suggested change
return Objects.hash(balancePlatform, capabilities, contactDetails, description, id, legalEntityId, metadata, migratedAccountHolderCode, primaryBalanceAccount, reference, status, timeZone, verificationDeadlines);
return Objects.hash(
balancePlatform,
capabilities,
contactDetails,
description,
id,
legalEntityId,
metadata,
migratedAccountHolderCode,
primaryBalanceAccount,
reference,
status,
timeZone,
verificationDeadlines);

requestedSettings,
transferInstruments,
verificationStatus);
return Objects.hash(allowed, allowedLevel, allowedSettings, enabled, problems, requested, requestedLevel, requestedSettings, transferInstruments, verificationStatus);
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

This line is too long, making it hard to read. Please wrap it to adhere to standard line length limits.

Suggested change
return Objects.hash(allowed, allowedLevel, allowedSettings, enabled, problems, requested, requestedLevel, requestedSettings, transferInstruments, verificationStatus);
return Objects.hash(
allowed,
allowedLevel,
allowedSettings,
enabled,
problems,
requested,
requestedLevel,
requestedSettings,
transferInstruments,
verificationStatus);

statusComment,
statusReason,
type);
return Objects.hash(additionalBankAccountIdentifications, balanceAccountId, bankAccount, card, description, id, issuingCountryCode, paymentInstrumentGroupId, reference, replacedById, replacementOfId, status, statusComment, statusReason, type);
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

This line is excessively long and should be wrapped for better readability, similar to how it was formatted before this change.

Suggested change
return Objects.hash(additionalBankAccountIdentifications, balanceAccountId, bankAccount, card, description, id, issuingCountryCode, paymentInstrumentGroupId, reference, replacedById, replacementOfId, status, statusComment, statusReason, type);
return Objects.hash(
additionalBankAccountIdentifications,
balanceAccountId,
bankAccount,
card,
description,
id,
issuingCountryCode,
paymentInstrumentGroupId,
reference,
replacedById,
replacementOfId,
status,
statusComment,
statusReason,
type);

Comment on lines 151 to 153



Copy link
Contributor

Choose a reason for hiding this comment

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

medium

These excessive newlines before the constructor should be removed to improve code readability. This issue is present in many of the modified model classes.

@AdyenAutomationBot AdyenAutomationBot force-pushed the sdk-automation/configurationwebhooks branch 3 times, most recently from 9a78c34 to a488589 Compare January 8, 2026 12:04
@AdyenAutomationBot AdyenAutomationBot force-pushed the sdk-automation/configurationwebhooks branch from 092539f to 2daa0cd 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