Skip to content

Adyen Java API Library v23.0.0

Compare
Choose a tag to compare
@AdyenAutomationBot AdyenAutomationBot released this 31 Jan 12:28
· 226 commits to main since this release
ca2656c

What's Changed

Breaking Changes 🛠

Donations has moved

The Checkout Donations endpoint, which was previously on the PaymentsApi, has been moved to its own service called DonationsApi.

 var client = new Client("My API-Key", Environment.TEST);

 DonationsApi donationsApi = new DonationsApi(client);
 DonationPaymentResponse response = donationsApi.donations(donationRequest);
  • Balance Platform Configuration API:
    • Class GrantOffer the type of the attributes expiresAt and startsAt has changed from Object to OffsetDateTime
        private OffsetDateTime expiresAt;
        private OffsetDateTime startsAt;
    
    • Class PaymentInstrumentInfo add attribute bankAccount
  • Update all services by @AdyenAutomationBot in #1206

Other Changes 🖇️

Full Changelog: v...v23.0.0