From 8aa0b81ee725b667f461800ca484a9465aae8570 Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:06:28 +0200 Subject: [PATCH 1/7] Start next iteration with 1.3.13-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 25c3e40..acd23bb 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ de.adorsys.multibanking xs2a-client-adapter - 1.3.12 + 1.3.13-SNAPSHOT jar xs2a-client-adapter From d41729c38ae0c0479e13071d4f263ad40665aef5 Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:16:23 +0200 Subject: [PATCH 2/7] github workflows config --- .github/workflows/release.yml | 75 +++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..60237b2 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,75 @@ +name: Release CI + +on: + push: + tags: + - '*.*.*' + +env: + GPG_EXECUTABLE: ${{ secrets.GPG_EXECUTABLE }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} + SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} + +jobs: + build_and_test: + name: Build and test xs2a-client-adapter (openjdk 1.11) + runs-on: ubuntu-latest + steps: + - name: Clone xs2a-client-adapter repository + uses: actions/checkout@v2 + + - name: Set up JDK 11 for x64 + uses: actions/setup-java@v1 + with: + java-version: 1.11 + architecture: x64 + + - name: Cache Maven packages + uses: actions/cache@v2 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: Build xs2a-client-adapter + run: mvn clean install -DskipTests -Dmaven.javadoc.skip=true -B -V -q + + - name: Run Unit Tests + run: mvn clean test -B -V -q + + deploy: + name: Release to maven central + needs: build_and_test + runs-on: ubuntu-latest + steps: + - name: Clone xs2a-client-adapter repository + uses: actions/checkout@v2 + + - name: Set up JDK 11 for x64 + uses: actions/setup-java@v1 + with: + java-version: 1.11 + architecture: x64 + + - name: Cache Maven packages + uses: actions/cache@v2 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: Build xs2a-client-adapter and create jar files + run: mvn clean install -DskipTests -Dmaven.javadoc.skip=true -B -V -q + + - name: Publish to Maven Central + run: | + gpg --version + export GPG_TTY="$( tty )" #need to run to sign artifacts with maven + echo ${{ secrets.GPG_SECRET_KEY }} | base64 --decode | gpg --import --batch + echo ${{ secrets.GPG_OWNERTRUST }} | base64 --decode | gpg --batch --import-ownertrust + mvn --settings maven_release_settings.xml \ + -Dhttp.keepAlive=false \ + -Dmaven.wagon.http.pool=false \ + -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \ + -Prelease -DskipTests -U deploy From dc4316dc298c6d7092899d2e5459a61f81c840ef Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:41:36 +0200 Subject: [PATCH 3/7] generated again with option hideGenerationTimestamp --- pom.xml | 1 + .../de/adorsys/psd2/client/ApiException.java | 2 +- .../de/adorsys/psd2/client/Configuration.java | 2 +- src/main/java/de/adorsys/psd2/client/JSON.java | 16 ++++++++++++++-- src/main/java/de/adorsys/psd2/client/Pair.java | 2 +- .../java/de/adorsys/psd2/client/StringUtil.java | 2 +- .../de/adorsys/psd2/client/auth/ApiKeyAuth.java | 2 +- .../java/de/adorsys/psd2/client/auth/OAuth.java | 2 +- .../adorsys/psd2/client/model/AccountAccess.java | 2 +- .../psd2/client/model/AccountDetails.java | 2 +- .../adorsys/psd2/client/model/AccountList.java | 2 +- .../adorsys/psd2/client/model/AccountOwner.java | 2 +- .../psd2/client/model/AccountReference.java | 2 +- .../adorsys/psd2/client/model/AccountReport.java | 2 +- .../model/AdditionalInformationAccess.java | 2 +- .../model/AdditionalInformationStructured.java | 2 +- .../de/adorsys/psd2/client/model/Address.java | 2 +- .../de/adorsys/psd2/client/model/Amount.java | 2 +- .../psd2/client/model/AuthenticationObject.java | 2 +- .../client/model/AuthorisationConfirmation.java | 2 +- .../model/AuthorisationConfirmationResponse.java | 2 +- .../psd2/client/model/Authorisations.java | 2 +- .../psd2/client/model/AuthorisationsList.java | 2 +- .../de/adorsys/psd2/client/model/Balance.java | 2 +- .../adorsys/psd2/client/model/BalanceList.java | 2 +- .../client/model/BulkPaymentInitiationJson.java | 2 +- .../BulkPaymentInitiationWithStatusResponse.java | 2 +- .../psd2/client/model/CardAccountDetails.java | 2 +- .../psd2/client/model/CardAccountList.java | 2 +- .../psd2/client/model/CardAccountReport.java | 2 +- .../CardAccountsTransactionsResponse200.java | 2 +- .../psd2/client/model/CardTransaction.java | 2 +- .../psd2/client/model/CardTransactionList.java | 2 +- .../adorsys/psd2/client/model/ChallengeData.java | 2 +- .../psd2/client/model/ChosenScaMethod.java | 2 +- .../psd2/client/model/ConfirmationOfFunds.java | 2 +- .../adorsys/psd2/client/model/ConsentIdList.java | 2 +- .../model/ConsentInformationResponse200Json.java | 2 +- .../client/model/ConsentStatusResponse200.java | 2 +- .../de/adorsys/psd2/client/model/Consents.java | 2 +- .../psd2/client/model/ConsentsResponse201.java | 2 +- .../adorsys/psd2/client/model/EntryDetails.java | 2 +- .../psd2/client/model/EntryDetailsElement.java | 2 +- .../adorsys/psd2/client/model/Error400AIS.java | 2 +- .../model/Error400AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error400NGAIS.java | 2 +- .../psd2/client/model/Error400NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error400NGPIS.java | 2 +- .../adorsys/psd2/client/model/Error400NGSBS.java | 2 +- .../adorsys/psd2/client/model/Error400PIIS.java | 2 +- .../model/Error400PIISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error400PIS.java | 2 +- .../model/Error400PISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error400SBS.java | 2 +- .../model/Error400SBSAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error401AIS.java | 2 +- .../model/Error401AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error401NGAIS.java | 2 +- .../psd2/client/model/Error401NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error401NGPIS.java | 2 +- .../adorsys/psd2/client/model/Error401NGSBS.java | 2 +- .../adorsys/psd2/client/model/Error401PIIS.java | 2 +- .../model/Error401PIISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error401PIS.java | 2 +- .../model/Error401PISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error401SBS.java | 2 +- .../model/Error401SBSAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error403AIS.java | 2 +- .../model/Error403AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error403NGAIS.java | 2 +- .../psd2/client/model/Error403NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error403NGPIS.java | 2 +- .../adorsys/psd2/client/model/Error403NGSBS.java | 2 +- .../adorsys/psd2/client/model/Error403PIIS.java | 2 +- .../model/Error403PIISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error403PIS.java | 2 +- .../model/Error403PISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error403SBS.java | 2 +- .../model/Error403SBSAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error404AIS.java | 2 +- .../model/Error404AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error404NGAIS.java | 2 +- .../psd2/client/model/Error404NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error404NGPIS.java | 2 +- .../adorsys/psd2/client/model/Error404NGSBS.java | 2 +- .../adorsys/psd2/client/model/Error404PIIS.java | 2 +- .../model/Error404PIISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error404PIS.java | 2 +- .../model/Error404PISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error404SBS.java | 2 +- .../model/Error404SBSAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error405AIS.java | 2 +- .../model/Error405AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error405NGAIS.java | 2 +- .../psd2/client/model/Error405NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error405NGPIS.java | 2 +- .../psd2/client/model/Error405NGPISCANC.java | 2 +- .../adorsys/psd2/client/model/Error405NGSBS.java | 2 +- .../adorsys/psd2/client/model/Error405PIIS.java | 2 +- .../model/Error405PIISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error405PIS.java | 2 +- .../model/Error405PISAdditionalErrors.java | 2 +- .../psd2/client/model/Error405PISCANC.java | 2 +- .../model/Error405PISCANCAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error405SBS.java | 2 +- .../model/Error405SBSAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error406AIS.java | 2 +- .../model/Error406AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error406NGAIS.java | 2 +- .../psd2/client/model/Error406NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error406NGPIS.java | 2 +- .../adorsys/psd2/client/model/Error406PIS.java | 2 +- .../model/Error406PISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error409AIS.java | 2 +- .../model/Error409AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error409NGAIS.java | 2 +- .../psd2/client/model/Error409NGPIIS.java | 2 +- .../adorsys/psd2/client/model/Error409NGPIS.java | 2 +- .../adorsys/psd2/client/model/Error409NGSBS.java | 2 +- .../adorsys/psd2/client/model/Error409PIIS.java | 2 +- .../model/Error409PIISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error409PIS.java | 2 +- .../model/Error409PISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error409SBS.java | 2 +- .../model/Error409SBSAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error429AIS.java | 2 +- .../model/Error429AISAdditionalErrors.java | 2 +- .../adorsys/psd2/client/model/Error429NGAIS.java | 2 +- .../psd2/client/model/GrandTotalAmount.java | 2 +- .../de/adorsys/psd2/client/model/HrefType.java | 2 +- .../psd2/client/model/InlineResponse200.java | 2 +- .../psd2/client/model/InlineResponse2001.java | 2 +- .../psd2/client/model/InlineResponse2002.java | 2 +- .../psd2/client/model/InlineResponse2003.java | 2 +- .../psd2/client/model/LinksAccountDetails.java | 2 +- .../psd2/client/model/LinksAccountReport.java | 2 +- .../de/adorsys/psd2/client/model/LinksAll.java | 2 +- .../model/LinksAuthorisationConfirmation.java | 2 +- .../client/model/LinksCardAccountReport.java | 2 +- .../adorsys/psd2/client/model/LinksConsents.java | 2 +- .../adorsys/psd2/client/model/LinksDownload.java | 2 +- .../psd2/client/model/LinksGetConsent.java | 2 +- .../client/model/LinksPaymentInitiation.java | 2 +- .../model/LinksPaymentInitiationCancel.java | 2 +- .../model/LinksPaymentInitiationStatus.java | 2 +- .../LinksSelectPsuAuthenticationMethod.java | 2 +- .../psd2/client/model/LinksSigningBasket.java | 2 +- .../psd2/client/model/LinksStartScaProcess.java | 2 +- .../client/model/LinksTransactionDetails.java | 2 +- .../model/LinksUpdatePsuAuthentication.java | 2 +- .../model/LinksUpdatePsuIdentification.java | 2 +- .../psd2/client/model/MonthsOfExecution.java | 2 +- .../de/adorsys/psd2/client/model/OtherType.java | 2 +- .../psd2/client/model/PaymentExchangeRate.java | 2 +- .../adorsys/psd2/client/model/PaymentIdList.java | 2 +- .../model/PaymentInitiationBulkElementJson.java | 2 +- .../PaymentInitiationCancelResponse202.java | 2 +- .../psd2/client/model/PaymentInitiationJson.java | 2 +- .../PaymentInitiationRequestResponse201.java | 2 +- .../PaymentInitiationStatusResponse200Json.java | 2 +- .../PaymentInitiationWithStatusResponse.java | 2 +- .../model/PeriodicPaymentInitiationJson.java | 2 +- .../PeriodicPaymentInitiationMultipartBody.java | 2 +- ...iodicPaymentInitiationWithStatusResponse.java | 2 +- ...tInitiationXmlPart2StandingorderTypeJson.java | 2 +- .../de/adorsys/psd2/client/model/PsuData.java | 2 +- .../model/ReadAccountBalanceResponse200.java | 2 +- .../model/ReadCardAccountBalanceResponse200.java | 2 +- .../model/RemittanceInformationStructured.java | 2 +- .../RemittanceInformationStructuredArray.java | 2 +- .../RemittanceInformationStructuredMax140.java | 2 +- .../RemittanceInformationUnstructuredArray.java | 2 +- .../psd2/client/model/ReportExchangeRate.java | 2 +- .../client/model/ReportExchangeRateList.java | 2 +- .../de/adorsys/psd2/client/model/ScaMethods.java | 2 +- .../psd2/client/model/ScaStatusResponse.java | 2 +- .../model/SelectPsuAuthenticationMethod.java | 2 +- .../SelectPsuAuthenticationMethodResponse.java | 2 +- .../adorsys/psd2/client/model/SigningBasket.java | 2 +- .../client/model/SigningBasketResponse200.java | 2 +- .../client/model/SigningBasketResponse201.java | 2 +- .../model/SigningBasketStatusResponse200.java | 2 +- .../psd2/client/model/StandingOrderDetails.java | 2 +- .../client/model/StartScaprocessResponse.java | 2 +- .../model/TppMessage201PaymentInitiation.java | 2 +- .../adorsys/psd2/client/model/TppMessage2XX.java | 2 +- .../psd2/client/model/TppMessage400AIS.java | 2 +- .../psd2/client/model/TppMessage400PIIS.java | 2 +- .../psd2/client/model/TppMessage400PIS.java | 2 +- .../psd2/client/model/TppMessage400SBS.java | 2 +- .../psd2/client/model/TppMessage401AIS.java | 2 +- .../psd2/client/model/TppMessage401PIIS.java | 2 +- .../psd2/client/model/TppMessage401PIS.java | 2 +- .../psd2/client/model/TppMessage401SBS.java | 2 +- .../psd2/client/model/TppMessage403AIS.java | 2 +- .../psd2/client/model/TppMessage403PIIS.java | 2 +- .../psd2/client/model/TppMessage403PIS.java | 2 +- .../psd2/client/model/TppMessage403SBS.java | 2 +- .../psd2/client/model/TppMessage404AIS.java | 2 +- .../psd2/client/model/TppMessage404PIIS.java | 2 +- .../psd2/client/model/TppMessage404PIS.java | 2 +- .../psd2/client/model/TppMessage404SBS.java | 2 +- .../psd2/client/model/TppMessage405AIS.java | 2 +- .../psd2/client/model/TppMessage405PIIS.java | 2 +- .../psd2/client/model/TppMessage405PIS.java | 2 +- .../psd2/client/model/TppMessage405PISCANC.java | 2 +- .../psd2/client/model/TppMessage405SBS.java | 2 +- .../psd2/client/model/TppMessage406AIS.java | 2 +- .../psd2/client/model/TppMessage406PIIS.java | 2 +- .../psd2/client/model/TppMessage406PIS.java | 2 +- .../psd2/client/model/TppMessage409AIS.java | 2 +- .../psd2/client/model/TppMessage409PIIS.java | 2 +- .../psd2/client/model/TppMessage409PIS.java | 2 +- .../psd2/client/model/TppMessage409SBS.java | 2 +- .../psd2/client/model/TppMessage429AIS.java | 2 +- .../psd2/client/model/TppMessageGeneric.java | 2 +- .../TppMessageInitiationStatusResponse200.java | 2 +- .../client/model/TransactionAuthorisation.java | 2 +- .../client/model/TransactionDetailsBody.java | 2 +- .../psd2/client/model/TransactionList.java | 2 +- .../adorsys/psd2/client/model/Transactions.java | 2 +- .../model/TransactionsResponse200Json.java | 2 +- .../client/model/UpdatePsuAuthentication.java | 2 +- .../model/UpdatePsuAuthenticationResponse.java | 2 +- .../model/UpdatePsuIdentificationResponse.java | 2 +- 225 files changed, 238 insertions(+), 225 deletions(-) diff --git a/pom.xml b/pom.xml index acd23bb..3a2ddc0 100755 --- a/pom.xml +++ b/pom.xml @@ -223,6 +223,7 @@ + diff --git a/src/main/java/de/adorsys/psd2/client/ApiException.java b/src/main/java/de/adorsys/psd2/client/ApiException.java index b075f63..dfd5d03 100644 --- a/src/main/java/de/adorsys/psd2/client/ApiException.java +++ b/src/main/java/de/adorsys/psd2/client/ApiException.java @@ -15,7 +15,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]")public class ApiException extends Exception { +public class ApiException extends Exception { private int code = 0; private Map> responseHeaders = null; private String responseBody = null; diff --git a/src/main/java/de/adorsys/psd2/client/Configuration.java b/src/main/java/de/adorsys/psd2/client/Configuration.java index 8147bc5..a06a9b7 100644 --- a/src/main/java/de/adorsys/psd2/client/Configuration.java +++ b/src/main/java/de/adorsys/psd2/client/Configuration.java @@ -12,7 +12,7 @@ package de.adorsys.psd2.client; -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]")public class Configuration { +public class Configuration { private static ApiClient defaultApiClient = new ApiClient(); /** diff --git a/src/main/java/de/adorsys/psd2/client/JSON.java b/src/main/java/de/adorsys/psd2/client/JSON.java index 7e781ca..fec3496 100644 --- a/src/main/java/de/adorsys/psd2/client/JSON.java +++ b/src/main/java/de/adorsys/psd2/client/JSON.java @@ -47,8 +47,20 @@ public class JSON { private LocalDateTypeAdapter localDateTypeAdapter = new LocalDateTypeAdapter(); public static GsonBuilder createGson() { - GsonFireBuilder fireBuilder = new GsonFireBuilder(); - + GsonFireBuilder fireBuilder = new GsonFireBuilder() + .registerTypeSelector(AuthenticationObject.class, new TypeSelector() { + @Override + public Class getClassForElement(JsonElement readElement) { + Map> classByDiscriminatorValue = new HashMap<>(); + + classByDiscriminatorValue.put("chosenScaMethod".toUpperCase(), ChosenScaMethod.class); + classByDiscriminatorValue.put("AuthenticationObject".toUpperCase(), AuthenticationObject.class); + return getClassByDiscriminator( + classByDiscriminatorValue, + getDiscriminatorValue(readElement, "")); + } + }) + ; return fireBuilder.createGsonBuilder(); } diff --git a/src/main/java/de/adorsys/psd2/client/Pair.java b/src/main/java/de/adorsys/psd2/client/Pair.java index 4c30c4d..809e562 100644 --- a/src/main/java/de/adorsys/psd2/client/Pair.java +++ b/src/main/java/de/adorsys/psd2/client/Pair.java @@ -12,7 +12,7 @@ package de.adorsys.psd2.client; -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]")public class Pair { +public class Pair { private String name = ""; private String value = ""; diff --git a/src/main/java/de/adorsys/psd2/client/StringUtil.java b/src/main/java/de/adorsys/psd2/client/StringUtil.java index b7f872f..2d17f24 100644 --- a/src/main/java/de/adorsys/psd2/client/StringUtil.java +++ b/src/main/java/de/adorsys/psd2/client/StringUtil.java @@ -12,7 +12,7 @@ package de.adorsys.psd2.client; -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]")public class StringUtil { +public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). * diff --git a/src/main/java/de/adorsys/psd2/client/auth/ApiKeyAuth.java b/src/main/java/de/adorsys/psd2/client/auth/ApiKeyAuth.java index 1e58e98..60b475c 100644 --- a/src/main/java/de/adorsys/psd2/client/auth/ApiKeyAuth.java +++ b/src/main/java/de/adorsys/psd2/client/auth/ApiKeyAuth.java @@ -17,7 +17,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]")public class ApiKeyAuth implements Authentication { +public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/src/main/java/de/adorsys/psd2/client/auth/OAuth.java b/src/main/java/de/adorsys/psd2/client/auth/OAuth.java index 959b17f..e2b4b1a 100644 --- a/src/main/java/de/adorsys/psd2/client/auth/OAuth.java +++ b/src/main/java/de/adorsys/psd2/client/auth/OAuth.java @@ -17,7 +17,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]")public class OAuth implements Authentication { +public class OAuth implements Authentication { private String accessToken; public String getAccessToken() { diff --git a/src/main/java/de/adorsys/psd2/client/model/AccountAccess.java b/src/main/java/de/adorsys/psd2/client/model/AccountAccess.java index 6ffb5a4..4c78070 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AccountAccess.java +++ b/src/main/java/de/adorsys/psd2/client/model/AccountAccess.java @@ -29,7 +29,7 @@ * Requested access services for a consent. */ @Schema(description = "Requested access services for a consent. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AccountAccess { @SerializedName("accounts") private List accounts = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AccountDetails.java b/src/main/java/de/adorsys/psd2/client/model/AccountDetails.java index 64aaf47..2920f83 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AccountDetails.java +++ b/src/main/java/de/adorsys/psd2/client/model/AccountDetails.java @@ -31,7 +31,7 @@ * The ASPSP shall give at least one of the account reference identifiers: - iban - bban - pan - maskedPan - msisdn If the account is a multicurrency account currency code in \"currency\" is set to \"XXX\". */ @Schema(description = "The ASPSP shall give at least one of the account reference identifiers: - iban - bban - pan - maskedPan - msisdn If the account is a multicurrency account currency code in \"currency\" is set to \"XXX\". ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AccountDetails { @SerializedName("resourceId") private String resourceId = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AccountList.java b/src/main/java/de/adorsys/psd2/client/model/AccountList.java index c23c742..21e8607 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AccountList.java +++ b/src/main/java/de/adorsys/psd2/client/model/AccountList.java @@ -28,7 +28,7 @@ * List of accounts with details. */ @Schema(description = "List of accounts with details. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AccountList { @SerializedName("accounts") private List accounts = new ArrayList<>(); diff --git a/src/main/java/de/adorsys/psd2/client/model/AccountOwner.java b/src/main/java/de/adorsys/psd2/client/model/AccountOwner.java index 65485fb..3749994 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AccountOwner.java +++ b/src/main/java/de/adorsys/psd2/client/model/AccountOwner.java @@ -25,7 +25,7 @@ * Identifies a Person that acts as an account owner */ @Schema(description = "Identifies a Person that acts as an account owner ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AccountOwner { @SerializedName("name") private String name = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AccountReference.java b/src/main/java/de/adorsys/psd2/client/model/AccountReference.java index 4d5c253..522c66e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AccountReference.java +++ b/src/main/java/de/adorsys/psd2/client/model/AccountReference.java @@ -26,7 +26,7 @@ * Reference to an account by either * IBAN, of a payment accounts, or * BBAN, for payment accounts if there is no IBAN, or * the Primary Account Number (PAN) of a card, can be tokenised by the ASPSP due to PCI DSS requirements, or * the Primary Account Number (PAN) of a card in a masked form, or * an alias to access a payment account via a registered mobile phone number (MSISDN), or * a proprietary ID of the respective account that uniquely identifies the account for this ASPSP. */ @Schema(description = "Reference to an account by either * IBAN, of a payment accounts, or * BBAN, for payment accounts if there is no IBAN, or * the Primary Account Number (PAN) of a card, can be tokenised by the ASPSP due to PCI DSS requirements, or * the Primary Account Number (PAN) of a card in a masked form, or * an alias to access a payment account via a registered mobile phone number (MSISDN), or * a proprietary ID of the respective account that uniquely identifies the account for this ASPSP. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AccountReference { @SerializedName("iban") private String iban = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AccountReport.java b/src/main/java/de/adorsys/psd2/client/model/AccountReport.java index 05d0eda..a0099da 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AccountReport.java +++ b/src/main/java/de/adorsys/psd2/client/model/AccountReport.java @@ -27,7 +27,7 @@ * JSON based account report. This account report contains transactions resulting from the query parameters. 'booked' shall be contained if bookingStatus parameter is set to \"booked\" or \"both\". 'pending' is not contained if the bookingStatus parameter is set to \"booked\" or \"information\". 'information' is used if and only if the bookingStatus entry equals \"information\". Every active standing order related to the dedicated payment account result into one entry. */ @Schema(description = "JSON based account report. This account report contains transactions resulting from the query parameters. 'booked' shall be contained if bookingStatus parameter is set to \"booked\" or \"both\". 'pending' is not contained if the bookingStatus parameter is set to \"booked\" or \"information\". 'information' is used if and only if the bookingStatus entry equals \"information\". Every active standing order related to the dedicated payment account result into one entry. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AccountReport { @SerializedName("booked") private TransactionList booked = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationAccess.java b/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationAccess.java index 7f2fbf9..e511537 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationAccess.java +++ b/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationAccess.java @@ -28,7 +28,7 @@ * Optional if supported by API provider. Is asking for additional information as added within this structured object. The usage of this data element requires at least one of the entries \"accounts\", \"transactions\" or \"balances\" also to be contained in the object. If detailed accounts are referenced, it is required in addition that any account addressed within the additionalInformation attribute is also addressed by at least one of the attributes \"accounts\", \"transactions\" or \"balances\". */ @Schema(description = "Optional if supported by API provider. Is asking for additional information as added within this structured object. The usage of this data element requires at least one of the entries \"accounts\", \"transactions\" or \"balances\" also to be contained in the object. If detailed accounts are referenced, it is required in addition that any account addressed within the additionalInformation attribute is also addressed by at least one of the attributes \"accounts\", \"transactions\" or \"balances\". ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AdditionalInformationAccess { @SerializedName("ownerName") private List ownerName = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationStructured.java b/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationStructured.java index e446d54..9df304d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationStructured.java +++ b/src/main/java/de/adorsys/psd2/client/model/AdditionalInformationStructured.java @@ -26,7 +26,7 @@ * Is used if and only if the bookingStatus entry equals \"information\". Every active standing order related to the dedicated payment account result into one entry. */ @Schema(description = "Is used if and only if the bookingStatus entry equals \"information\". Every active standing order related to the dedicated payment account result into one entry. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AdditionalInformationStructured { @SerializedName("standingOrderDetails") private StandingOrderDetails standingOrderDetails = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Address.java b/src/main/java/de/adorsys/psd2/client/model/Address.java index 57218e1..42c7bc4 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Address.java +++ b/src/main/java/de/adorsys/psd2/client/model/Address.java @@ -25,7 +25,7 @@ * Address */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Address { @SerializedName("streetName") private String streetName = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Amount.java b/src/main/java/de/adorsys/psd2/client/model/Amount.java index c62a478..843af42 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Amount.java +++ b/src/main/java/de/adorsys/psd2/client/model/Amount.java @@ -25,7 +25,7 @@ * Amount */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Amount { @SerializedName("currency") private String currency = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AuthenticationObject.java b/src/main/java/de/adorsys/psd2/client/model/AuthenticationObject.java index b9e10c8..03c9a05 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AuthenticationObject.java +++ b/src/main/java/de/adorsys/psd2/client/model/AuthenticationObject.java @@ -25,7 +25,7 @@ * Authentication object. */ @Schema(description = "Authentication object. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AuthenticationObject { @SerializedName("authenticationType") private String authenticationType = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmation.java b/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmation.java index 0339217..d144cdd 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmation.java +++ b/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmation.java @@ -25,7 +25,7 @@ * Content of the body of an authorisation confirmation request */ @Schema(description = "Content of the body of an authorisation confirmation request ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AuthorisationConfirmation { @SerializedName("confirmationCode") private String confirmationCode = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmationResponse.java b/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmationResponse.java index efe7b87..a7fa689 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmationResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/AuthorisationConfirmationResponse.java @@ -27,7 +27,7 @@ * Body of the JSON response for an authorisation confirmation request. */ @Schema(description = "Body of the JSON response for an authorisation confirmation request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AuthorisationConfirmationResponse { @SerializedName("scaStatus") private ScaStatusAuthorisationConfirmation scaStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Authorisations.java b/src/main/java/de/adorsys/psd2/client/model/Authorisations.java index 76f1772..71bdf9d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Authorisations.java +++ b/src/main/java/de/adorsys/psd2/client/model/Authorisations.java @@ -26,7 +26,7 @@ * An array of all authorisationIds. */ @Schema(description = "An array of all authorisationIds.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Authorisations { @SerializedName("authorisationIds") private AuthorisationsList authorisationIds = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/AuthorisationsList.java b/src/main/java/de/adorsys/psd2/client/model/AuthorisationsList.java index fad9dbc..342c4e1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/AuthorisationsList.java +++ b/src/main/java/de/adorsys/psd2/client/model/AuthorisationsList.java @@ -21,7 +21,7 @@ * An array of all authorisationIds. */ @Schema(description = "An array of all authorisationIds.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class AuthorisationsList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/Balance.java b/src/main/java/de/adorsys/psd2/client/model/Balance.java index 2328488..b8b0cf2 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Balance.java +++ b/src/main/java/de/adorsys/psd2/client/model/Balance.java @@ -29,7 +29,7 @@ * A single balance element. */ @Schema(description = "A single balance element. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Balance { @SerializedName("balanceAmount") private Amount balanceAmount = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/BalanceList.java b/src/main/java/de/adorsys/psd2/client/model/BalanceList.java index e670858..e07a484 100644 --- a/src/main/java/de/adorsys/psd2/client/model/BalanceList.java +++ b/src/main/java/de/adorsys/psd2/client/model/BalanceList.java @@ -22,7 +22,7 @@ * A list of balances regarding this account, e.g. the current balance, the last booked balance. The list might be restricted to the current balance. */ @Schema(description = "A list of balances regarding this account, e.g. the current balance, the last booked balance. The list might be restricted to the current balance. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class BalanceList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationJson.java b/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationJson.java index c634a7d..187ebcf 100644 --- a/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationJson.java +++ b/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationJson.java @@ -31,7 +31,7 @@ * Generic Body for a bulk payment initiation via JSON. paymentInformationId is contained in code but commented since it is n.a. and not all ASPSP are able to support this field now. In a later version the field will be mandatory. */ @Schema(description = "Generic Body for a bulk payment initiation via JSON. paymentInformationId is contained in code but commented since it is n.a. and not all ASPSP are able to support this field now. In a later version the field will be mandatory. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class BulkPaymentInitiationJson { @SerializedName("batchBookingPreferred") private Boolean batchBookingPreferred = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationWithStatusResponse.java b/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationWithStatusResponse.java index 63b71ab..469c25f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationWithStatusResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/BulkPaymentInitiationWithStatusResponse.java @@ -33,7 +33,7 @@ * Generic JSON response body consistion of the corresponding bulk payment initiation JSON body together with an optional transaction status field. */ @Schema(description = "Generic JSON response body consistion of the corresponding bulk payment initiation JSON body together with an optional transaction status field. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class BulkPaymentInitiationWithStatusResponse { @SerializedName("batchBookingPreferred") private Boolean batchBookingPreferred = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/CardAccountDetails.java b/src/main/java/de/adorsys/psd2/client/model/CardAccountDetails.java index 20d3a4a..d1fbe6e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/CardAccountDetails.java +++ b/src/main/java/de/adorsys/psd2/client/model/CardAccountDetails.java @@ -29,7 +29,7 @@ * Card account details. */ @Schema(description = "Card account details. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class CardAccountDetails { @SerializedName("resourceId") private String resourceId = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/CardAccountList.java b/src/main/java/de/adorsys/psd2/client/model/CardAccountList.java index 990b12d..7a481c7 100644 --- a/src/main/java/de/adorsys/psd2/client/model/CardAccountList.java +++ b/src/main/java/de/adorsys/psd2/client/model/CardAccountList.java @@ -28,7 +28,7 @@ * List of card accounts with details. */ @Schema(description = "List of card accounts with details. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class CardAccountList { @SerializedName("cardAccounts") private List cardAccounts = new ArrayList<>(); diff --git a/src/main/java/de/adorsys/psd2/client/model/CardAccountReport.java b/src/main/java/de/adorsys/psd2/client/model/CardAccountReport.java index 20a10b4..7e140e3 100644 --- a/src/main/java/de/adorsys/psd2/client/model/CardAccountReport.java +++ b/src/main/java/de/adorsys/psd2/client/model/CardAccountReport.java @@ -27,7 +27,7 @@ * JSON based card account report. This card account report contains transactions resulting from the query parameters. */ @Schema(description = "JSON based card account report. This card account report contains transactions resulting from the query parameters. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class CardAccountReport { @SerializedName("booked") private CardTransactionList booked = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/CardAccountsTransactionsResponse200.java b/src/main/java/de/adorsys/psd2/client/model/CardAccountsTransactionsResponse200.java index 0449f7f..5e1d03d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/CardAccountsTransactionsResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/CardAccountsTransactionsResponse200.java @@ -29,7 +29,7 @@ * Body of the JSON response for a successful read card account transaction list request. This card account report contains transactions resulting from the query parameters. */ @Schema(description = "Body of the JSON response for a successful read card account transaction list request. This card account report contains transactions resulting from the query parameters. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class CardAccountsTransactionsResponse200 { @SerializedName("cardAccount") private AccountReference cardAccount = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/CardTransaction.java b/src/main/java/de/adorsys/psd2/client/model/CardTransaction.java index 88909a5..a93d6a5 100644 --- a/src/main/java/de/adorsys/psd2/client/model/CardTransaction.java +++ b/src/main/java/de/adorsys/psd2/client/model/CardTransaction.java @@ -31,7 +31,7 @@ * Card transaction information. */ @Schema(description = "Card transaction information.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class CardTransaction { @SerializedName("cardTransactionId") private String cardTransactionId = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/CardTransactionList.java b/src/main/java/de/adorsys/psd2/client/model/CardTransactionList.java index dd0e078..d46ee89 100644 --- a/src/main/java/de/adorsys/psd2/client/model/CardTransactionList.java +++ b/src/main/java/de/adorsys/psd2/client/model/CardTransactionList.java @@ -22,7 +22,7 @@ * Array of transaction details. */ @Schema(description = "Array of transaction details.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class CardTransactionList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/ChallengeData.java b/src/main/java/de/adorsys/psd2/client/model/ChallengeData.java index 25d779d..ab5014f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ChallengeData.java +++ b/src/main/java/de/adorsys/psd2/client/model/ChallengeData.java @@ -27,7 +27,7 @@ * It is contained in addition to the data element 'chosenScaMethod' if challenge data is needed for SCA. In rare cases this attribute is also used in the context of the 'startAuthorisationWithPsuAuthentication' link. */ @Schema(description = "It is contained in addition to the data element 'chosenScaMethod' if challenge data is needed for SCA. In rare cases this attribute is also used in the context of the 'startAuthorisationWithPsuAuthentication' link. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ChallengeData { @SerializedName("image") private byte[] image = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ChosenScaMethod.java b/src/main/java/de/adorsys/psd2/client/model/ChosenScaMethod.java index d853a12..b616827 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ChosenScaMethod.java +++ b/src/main/java/de/adorsys/psd2/client/model/ChosenScaMethod.java @@ -19,7 +19,7 @@ * ChosenScaMethod */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ChosenScaMethod extends AuthenticationObject { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/ConfirmationOfFunds.java b/src/main/java/de/adorsys/psd2/client/model/ConfirmationOfFunds.java index f3956a2..61e5b77 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ConfirmationOfFunds.java +++ b/src/main/java/de/adorsys/psd2/client/model/ConfirmationOfFunds.java @@ -27,7 +27,7 @@ * JSON Request body for the \"Confirmation of funds service\". <table> <tr> <td>cardNumber</td> <td>String </td> <td>Optional</td> <td>Card Number of the card issued by the PIISP. Should be delivered if available.</td> </tr> <tr> <td>account</td> <td> Account Reference</td> <td>Mandatory</td> <td>PSU's account number.</td> </tr> <tr> <td>payee</td> <td>Max70Text</td> <td>Optional</td> <td>The merchant where the card is accepted as an information to the PSU.</td> </tr> <tr> <td>instructedAmount</td> <td>Amount</td> <td>Mandatory</td> <td>Transaction amount to be checked within the funds check mechanism.</td> </tr> </table> */ @Schema(description = "JSON Request body for the \"Confirmation of funds service\".
cardNumber String Optional Card Number of the card issued by the PIISP. Should be delivered if available.
account Account Reference Mandatory PSU's account number.
payee Max70Text Optional The merchant where the card is accepted as an information to the PSU.
instructedAmount Amount Mandatory Transaction amount to be checked within the funds check mechanism.
") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ConfirmationOfFunds { @SerializedName("cardNumber") private String cardNumber = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ConsentIdList.java b/src/main/java/de/adorsys/psd2/client/model/ConsentIdList.java index 090e511..5574ffb 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ConsentIdList.java +++ b/src/main/java/de/adorsys/psd2/client/model/ConsentIdList.java @@ -21,7 +21,7 @@ * A list of consentIds. */ @Schema(description = "A list of consentIds.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ConsentIdList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/ConsentInformationResponse200Json.java b/src/main/java/de/adorsys/psd2/client/model/ConsentInformationResponse200Json.java index cb932b6..750dab8 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ConsentInformationResponse200Json.java +++ b/src/main/java/de/adorsys/psd2/client/model/ConsentInformationResponse200Json.java @@ -29,7 +29,7 @@ * Body of the JSON response for a successfull get consent request. */ @Schema(description = "Body of the JSON response for a successfull get consent request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ConsentInformationResponse200Json { @SerializedName("access") private AccountAccess access = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ConsentStatusResponse200.java b/src/main/java/de/adorsys/psd2/client/model/ConsentStatusResponse200.java index c549537..8d0935e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ConsentStatusResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/ConsentStatusResponse200.java @@ -26,7 +26,7 @@ * Body of the JSON response for a successful get status request for a consent. */ @Schema(description = "Body of the JSON response for a successful get status request for a consent.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ConsentStatusResponse200 { @SerializedName("consentStatus") private ConsentStatus consentStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Consents.java b/src/main/java/de/adorsys/psd2/client/model/Consents.java index d1bb918..adda66b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Consents.java +++ b/src/main/java/de/adorsys/psd2/client/model/Consents.java @@ -27,7 +27,7 @@ * Content of the body of a consent request. */ @Schema(description = "Content of the body of a consent request. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Consents { @SerializedName("access") private AccountAccess access = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ConsentsResponse201.java b/src/main/java/de/adorsys/psd2/client/model/ConsentsResponse201.java index aacb8a8..fb0573b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ConsentsResponse201.java +++ b/src/main/java/de/adorsys/psd2/client/model/ConsentsResponse201.java @@ -34,7 +34,7 @@ * Body of the JSON response for a successful consent request. */ @Schema(description = "Body of the JSON response for a successful consent request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ConsentsResponse201 { @SerializedName("consentStatus") private ConsentStatus consentStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/EntryDetails.java b/src/main/java/de/adorsys/psd2/client/model/EntryDetails.java index 6766adc..e284e68 100644 --- a/src/main/java/de/adorsys/psd2/client/model/EntryDetails.java +++ b/src/main/java/de/adorsys/psd2/client/model/EntryDetails.java @@ -22,7 +22,7 @@ * Might be used by the ASPSP to transport details about transactions within a batch. */ @Schema(description = "Might be used by the ASPSP to transport details about transactions within a batch. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class EntryDetails extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/EntryDetailsElement.java b/src/main/java/de/adorsys/psd2/client/model/EntryDetailsElement.java index ba02f60..431ccd9 100644 --- a/src/main/java/de/adorsys/psd2/client/model/EntryDetailsElement.java +++ b/src/main/java/de/adorsys/psd2/client/model/EntryDetailsElement.java @@ -32,7 +32,7 @@ * EntryDetailsElement */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class EntryDetailsElement { @SerializedName("endToEndId") private String endToEndId = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error400AIS.java index 7726b28..e20ab1b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error400AISAdditionalErrors.java index 8810c7a..248f9bb 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error400NGAIS.java index ab190cc..8e21e33 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error400NGPIIS.java index c18cb77..cfd401d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error400NGPIS.java index 904ca40..c3492d2 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400NGSBS.java b/src/main/java/de/adorsys/psd2/client/model/Error400NGSBS.java index 0adabd0..3830da6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400NGSBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400NGSBS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 400. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400NGSBS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400PIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error400PIIS.java index a0d73a2..5e7b246 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400PIIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for PIIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for PIIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400PIIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400PIISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error400PIISAdditionalErrors.java index aa37319..c2cfbe2 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400PIISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400PIISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400PIISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error400PIS.java index 065bab3..aae0a0a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error400PISAdditionalErrors.java index 85d91f0..246ab98 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400SBS.java b/src/main/java/de/adorsys/psd2/client/model/Error400SBS.java index d4d7fe7..cce7d3d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400SBS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for signing baskets. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 400 for signing baskets. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400SBS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error400SBSAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error400SBSAdditionalErrors.java index 51a1e5f..177378c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error400SBSAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error400SBSAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error400SBSAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error401AIS.java index 773a3a4..570ae3f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error401AISAdditionalErrors.java index d4e4b72..9cc96bb 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error401NGAIS.java index f816722..fa32155 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error401NGPIIS.java index a725efb..ed8956d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error401NGPIS.java index d174901..a57e6f5 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401NGSBS.java b/src/main/java/de/adorsys/psd2/client/model/Error401NGSBS.java index 27f617a..bee4d1c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401NGSBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401NGSBS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401NGSBS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401PIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error401PIIS.java index 51c33cf..cc9b0e3 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401PIIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for PIIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for PIIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401PIIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401PIISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error401PIISAdditionalErrors.java index e093714..061a4ac 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401PIISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401PIISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401PIISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error401PIS.java index 6df1e5f..87ca4d6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error401PISAdditionalErrors.java index 9afdbbf..1c5bb4e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401SBS.java b/src/main/java/de/adorsys/psd2/client/model/Error401SBS.java index cecf4ba..0b4d035 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401SBS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for signing baskets. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 401 for signing baskets. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401SBS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error401SBSAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error401SBSAdditionalErrors.java index b69aea3..810f323 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error401SBSAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error401SBSAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error401SBSAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error403AIS.java index 2fe842e..e25ead2 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error403AISAdditionalErrors.java index 4a94b10..99f83d0 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error403NGAIS.java index 109772c..4b867dd 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error403NGPIIS.java index 1653511..95b176b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error403NGPIS.java index 1f658f9..49d077e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403NGSBS.java b/src/main/java/de/adorsys/psd2/client/model/Error403NGSBS.java index e5eca42..5b66ccf 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403NGSBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403NGSBS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 403. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403NGSBS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403PIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error403PIIS.java index 47b43fe..9874cb8 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403PIIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for PIIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for PIIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403PIIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403PIISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error403PIISAdditionalErrors.java index 2e38587..fedbf7e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403PIISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403PIISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403PIISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error403PIS.java index 51b51d1..cb4f694 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error403PISAdditionalErrors.java index 0bb9580..19ffdbf 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403SBS.java b/src/main/java/de/adorsys/psd2/client/model/Error403SBS.java index 9be2ad0..d8472c3 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403SBS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for signing baskets. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 403 for signing baskets. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403SBS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error403SBSAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error403SBSAdditionalErrors.java index d1bbd9d..0cb7432 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error403SBSAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error403SBSAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error403SBSAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error404AIS.java index e34e91a..d86985f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error404AISAdditionalErrors.java index 5c1dcdd..d8222ce 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error404NGAIS.java index 720c137..1c5e7f3 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error404NGPIIS.java index a93c15d..6ae45be 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error404NGPIS.java index 080e96e..638ddef 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404NGSBS.java b/src/main/java/de/adorsys/psd2/client/model/Error404NGSBS.java index 00bb004..797820b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404NGSBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404NGSBS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 404. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404NGSBS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404PIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error404PIIS.java index db760ad..20c774c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404PIIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for PIIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for PIIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404PIIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404PIISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error404PIISAdditionalErrors.java index 6548c8c..59d99ce 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404PIISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404PIISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404PIISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error404PIS.java index 61077ac..0e617a6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error404PISAdditionalErrors.java index 5bb7a52..b633c8e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404SBS.java b/src/main/java/de/adorsys/psd2/client/model/Error404SBS.java index aa2c9a7..bbd53cc 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404SBS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for signing baskets. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 404 for signing baskets. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404SBS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error404SBSAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error404SBSAdditionalErrors.java index c06c3cf..8a70868 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error404SBSAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error404SBSAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error404SBSAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error405AIS.java index 6ae6511..2da11d8 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error405AISAdditionalErrors.java index 3733fd5..52fefa1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error405NGAIS.java index d490a4c..f6eb1a6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error405NGPIIS.java index 1243fce..6f457ea 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error405NGPIS.java index cfcabf8..3145e70 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405NGPISCANC.java b/src/main/java/de/adorsys/psd2/client/model/Error405NGPISCANC.java index b9dced7..acdd63c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405NGPISCANC.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405NGPISCANC.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405NGPISCANC { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405NGSBS.java b/src/main/java/de/adorsys/psd2/client/model/Error405NGSBS.java index e06601c..b0ba154 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405NGSBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405NGSBS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 401. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405NGSBS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405PIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error405PIIS.java index 3965a7c..443f4f6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405PIIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for PIIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for PIIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405PIIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405PIISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error405PIISAdditionalErrors.java index 61be959..3a12085 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405PIISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405PIISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405PIISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error405PIS.java index cc48b63..47195e7 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error405PISAdditionalErrors.java index f73bb24..236aac5 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405PISCANC.java b/src/main/java/de/adorsys/psd2/client/model/Error405PISCANC.java index 5a32baf..09f767b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405PISCANC.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405PISCANC.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for a payment cancelation (PIS). */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for a payment cancelation (PIS). ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405PISCANC { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405PISCANCAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error405PISCANCAdditionalErrors.java index 30c3f7d..3acd8e1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405PISCANCAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405PISCANCAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405PISCANCAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405SBS.java b/src/main/java/de/adorsys/psd2/client/model/Error405SBS.java index 2db07b7..5729608 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405SBS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for signing baskets. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 405 for signing baskets. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405SBS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error405SBSAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error405SBSAdditionalErrors.java index c435832..4f8d2fa 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error405SBSAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error405SBSAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error405SBSAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error406AIS.java index 907bb16..b801d7c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 406 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 406 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error406AISAdditionalErrors.java index f78cedc..bec17fc 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error406NGAIS.java index cb189e2..64ebbe6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 406. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 406. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error406NGPIIS.java index af73234..ce828fe 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 406. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 406. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error406NGPIS.java index 9eabda4..eab71b9 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 406. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 406. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error406PIS.java index b903374..8e94801 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 406 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 406 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error406PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error406PISAdditionalErrors.java index db912a0..3402daf 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error406PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error406PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error406PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error409AIS.java index 01f4da5..bda7c85 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error409AISAdditionalErrors.java index 52a220d..a464d00 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error409NGAIS.java index 29a0880..e89b6fe 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409NGPIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error409NGPIIS.java index 191dd70..46d94f7 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409NGPIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409NGPIIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409NGPIIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409NGPIS.java b/src/main/java/de/adorsys/psd2/client/model/Error409NGPIS.java index 98bdfb3..f185b89 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409NGPIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409NGPIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409NGPIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409NGSBS.java b/src/main/java/de/adorsys/psd2/client/model/Error409NGSBS.java index 7692702..875309a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409NGSBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409NGSBS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 409. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409NGSBS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409PIIS.java b/src/main/java/de/adorsys/psd2/client/model/Error409PIIS.java index 9d5ee2b..88806a9 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409PIIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for PIIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for PIIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409PIIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409PIISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error409PIISAdditionalErrors.java index 2c088a5..5bfc860 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409PIISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409PIISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409PIISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409PIS.java b/src/main/java/de/adorsys/psd2/client/model/Error409PIS.java index 0eecee8..4247eec 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409PIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for PIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for PIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409PIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409PISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error409PISAdditionalErrors.java index 2bede25..2603c1c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409PISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409PISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409PISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409SBS.java b/src/main/java/de/adorsys/psd2/client/model/Error409SBS.java index cedfc37..22801cc 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409SBS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for signing baskets. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 409 for signing baskets. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409SBS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error409SBSAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error409SBSAdditionalErrors.java index 97be234..989c6c0 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error409SBSAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error409SBSAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807]. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807].") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error409SBSAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error429AIS.java b/src/main/java/de/adorsys/psd2/client/model/Error429AIS.java index a0ec42d..7ad1b7b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error429AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error429AIS.java @@ -29,7 +29,7 @@ * Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 429 for AIS. */ @Schema(description = "Standardised definition of reporting error information according to [RFC7807] in case of a HTTP error code 429 for AIS. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error429AIS { @SerializedName("type") private String type = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error429AISAdditionalErrors.java b/src/main/java/de/adorsys/psd2/client/model/Error429AISAdditionalErrors.java index cedf4ab..8d4edcf 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error429AISAdditionalErrors.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error429AISAdditionalErrors.java @@ -25,7 +25,7 @@ * This is a data element to support the declaration of additional errors in the context of [RFC7807] in case of a HTTP error code 429 for. */ @Schema(description = "This is a data element to support the declaration of additional errors in the context of [RFC7807] in case of a HTTP error code 429 for. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error429AISAdditionalErrors { @SerializedName("title") private String title = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/Error429NGAIS.java b/src/main/java/de/adorsys/psd2/client/model/Error429NGAIS.java index 84c6d39..32ca3a0 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Error429NGAIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/Error429NGAIS.java @@ -29,7 +29,7 @@ * NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 429. */ @Schema(description = "NextGenPSD2 specific definition of reporting error information in case of a HTTP error code 429. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Error429NGAIS { @SerializedName("tppMessages") private List tppMessages = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/GrandTotalAmount.java b/src/main/java/de/adorsys/psd2/client/model/GrandTotalAmount.java index fdc4b25..03a803f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/GrandTotalAmount.java +++ b/src/main/java/de/adorsys/psd2/client/model/GrandTotalAmount.java @@ -25,7 +25,7 @@ * Total amount of the instalment including charges, insurance and taxes in addition to the funded amount. */ @Schema(description = "Total amount of the instalment including charges, insurance and taxes in addition to the funded amount. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class GrandTotalAmount { @SerializedName("currency") private String currency = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/HrefType.java b/src/main/java/de/adorsys/psd2/client/model/HrefType.java index df2792a..1b15ddb 100644 --- a/src/main/java/de/adorsys/psd2/client/model/HrefType.java +++ b/src/main/java/de/adorsys/psd2/client/model/HrefType.java @@ -25,7 +25,7 @@ * Link to a resource. */ @Schema(description = "Link to a resource.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class HrefType { @SerializedName("href") private String href = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/InlineResponse200.java b/src/main/java/de/adorsys/psd2/client/model/InlineResponse200.java index 28cc0b9..5cf7c54 100644 --- a/src/main/java/de/adorsys/psd2/client/model/InlineResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/InlineResponse200.java @@ -26,7 +26,7 @@ * InlineResponse200 */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class InlineResponse200 { @SerializedName("account") private AccountDetails account = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/InlineResponse2001.java b/src/main/java/de/adorsys/psd2/client/model/InlineResponse2001.java index 85bf344..958d87d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/InlineResponse2001.java +++ b/src/main/java/de/adorsys/psd2/client/model/InlineResponse2001.java @@ -26,7 +26,7 @@ * InlineResponse2001 */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class InlineResponse2001 { @SerializedName("transactionsDetails") private Transactions transactionsDetails = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/InlineResponse2002.java b/src/main/java/de/adorsys/psd2/client/model/InlineResponse2002.java index 4eace2a..bb3a092 100644 --- a/src/main/java/de/adorsys/psd2/client/model/InlineResponse2002.java +++ b/src/main/java/de/adorsys/psd2/client/model/InlineResponse2002.java @@ -26,7 +26,7 @@ * InlineResponse2002 */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class InlineResponse2002 { @SerializedName("cardAccount") private CardAccountDetails cardAccount = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/InlineResponse2003.java b/src/main/java/de/adorsys/psd2/client/model/InlineResponse2003.java index fe2f0b2..e84e0ae 100644 --- a/src/main/java/de/adorsys/psd2/client/model/InlineResponse2003.java +++ b/src/main/java/de/adorsys/psd2/client/model/InlineResponse2003.java @@ -25,7 +25,7 @@ * Equals \"true\" if sufficient funds are available at the time of the request, \"false\" otherwise. */ @Schema(description = "Equals \"true\" if sufficient funds are available at the time of the request, \"false\" otherwise. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class InlineResponse2003 { @SerializedName("fundsAvailable") private Boolean fundsAvailable = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksAccountDetails.java b/src/main/java/de/adorsys/psd2/client/model/LinksAccountDetails.java index 8b29636..c23af92 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksAccountDetails.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksAccountDetails.java @@ -22,7 +22,7 @@ * Links to the account, which can be directly used for retrieving account information from this dedicated account. Links to \"balances\" and/or \"transactions\" These links are only supported, when the corresponding consent has been already granted. */ @Schema(description = "Links to the account, which can be directly used for retrieving account information from this dedicated account. Links to \"balances\" and/or \"transactions\" These links are only supported, when the corresponding consent has been already granted. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksAccountDetails extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksAccountReport.java b/src/main/java/de/adorsys/psd2/client/model/LinksAccountReport.java index dbbc02c..c4e30b4 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksAccountReport.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksAccountReport.java @@ -21,7 +21,7 @@ * LinksAccountReport */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksAccountReport extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksAll.java b/src/main/java/de/adorsys/psd2/client/model/LinksAll.java index 4a5e817..edc96a9 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksAll.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksAll.java @@ -22,7 +22,7 @@ * A _link object with all available link types. */ @Schema(description = "A _link object with all available link types. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksAll extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksAuthorisationConfirmation.java b/src/main/java/de/adorsys/psd2/client/model/LinksAuthorisationConfirmation.java index ad765c5..fd403f3 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksAuthorisationConfirmation.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksAuthorisationConfirmation.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaStatus': The link to retrieve the status of the corresponding transaction resource. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaStatus': The link to retrieve the status of the corresponding transaction resource. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksAuthorisationConfirmation extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksCardAccountReport.java b/src/main/java/de/adorsys/psd2/client/model/LinksCardAccountReport.java index db60abe..7bd5f82 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksCardAccountReport.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksCardAccountReport.java @@ -21,7 +21,7 @@ * LinksCardAccountReport */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksCardAccountReport extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksConsents.java b/src/main/java/de/adorsys/psd2/client/model/LinksConsents.java index f2d401d..307f3c1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksConsents.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksConsents.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. Type of links admitted in this response (which might be extended by single ASPSPs as indicated in its XS2A documentation): * 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. * 'scaOAuth': In case of an OAuth2 based Redirect Approach, the ASPSP is transmitting the link where the configuration of the OAuth2 Server is defined. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. * 'startAuthorisation': In case, where an explicit start of the transaction authorisation is needed, but no more data needs to be updated (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element 'scaMethods' * 'startAuthorisationWithTransactionAuthorisation': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while authorising the transaction e.g. by uploading an OTP received by SMS. * 'self': The link to the Establish Account Information Consent resource created by this request. This link can be used to retrieve the resource data. * 'status': The link to retrieve the status of the account information consent. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. This link is only contained, if an authorisation sub-resource has been already created. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. Type of links admitted in this response (which might be extended by single ASPSPs as indicated in its XS2A documentation): * 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. * 'scaOAuth': In case of an OAuth2 based Redirect Approach, the ASPSP is transmitting the link where the configuration of the OAuth2 Server is defined. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. * 'startAuthorisation': In case, where an explicit start of the transaction authorisation is needed, but no more data needs to be updated (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element 'scaMethods' * 'startAuthorisationWithTransactionAuthorisation': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while authorising the transaction e.g. by uploading an OTP received by SMS. * 'self': The link to the Establish Account Information Consent resource created by this request. This link can be used to retrieve the resource data. * 'status': The link to retrieve the status of the account information consent. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. This link is only contained, if an authorisation sub-resource has been already created. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksConsents extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksDownload.java b/src/main/java/de/adorsys/psd2/client/model/LinksDownload.java index 4941b92..8c05038 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksDownload.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksDownload.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. Type of links admitted in this response: - \"download\": a link to a resource, where the transaction report might be downloaded from in case where transaction reports have a huge size. Remark: This feature shall only be used where camt-data is requested which has a huge size. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. Type of links admitted in this response: - \"download\": a link to a resource, where the transaction report might be downloaded from in case where transaction reports have a huge size. Remark: This feature shall only be used where camt-data is requested which has a huge size. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksDownload extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksGetConsent.java b/src/main/java/de/adorsys/psd2/client/model/LinksGetConsent.java index fdd3c32..49d3418 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksGetConsent.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksGetConsent.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. Links of type \"account\" and/or \"cardAccount\", depending on the nature of the consent. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. Links of type \"account\" and/or \"cardAccount\", depending on the nature of the consent. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksGetConsent extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiation.java b/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiation.java index dc400bc..22d1574 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiation.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiation.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): * 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. * 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. * 'startAuthorisation': In case, where an explicit start of the transaction authorisation is needed, but no more data needs to be updated (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element \"scaMethods\" * 'startAuthorisationWithTransactionAuthorisation': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while authorising the transaction e.g. by uploading an OTP received by SMS. * 'self': The link to the payment initiation resource created by this request. This link can be used to retrieve the resource data. * 'status': The link to retrieve the transaction status of the payment initiation. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. This link is only contained, if an authorisation sub-resource has been already created. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): * 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. * 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. * 'startAuthorisation': In case, where an explicit start of the transaction authorisation is needed, but no more data needs to be updated (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element \"scaMethods\" * 'startAuthorisationWithTransactionAuthorisation': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while authorising the transaction e.g. by uploading an OTP received by SMS. * 'self': The link to the payment initiation resource created by this request. This link can be used to retrieve the resource data. * 'status': The link to retrieve the transaction status of the payment initiation. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. This link is only contained, if an authorisation sub-resource has been already created. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksPaymentInitiation extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationCancel.java b/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationCancel.java index 46673d7..8bc22c1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationCancel.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationCancel.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): * 'startAuthorisation': In case, where just the authorisation process of the cancellation needs to be started, but no additional data needs to be updated for time being (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': In case where a PSU identification needs to be updated when starting the cancellation authorisation: The link to the cancellation-authorisations end-point, where the cancellation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': In case of a yet to be created authorisation sub-resource: The link to the cancelation authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the cancellation-authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element 'scaMethods' */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): * 'startAuthorisation': In case, where just the authorisation process of the cancellation needs to be started, but no additional data needs to be updated for time being (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': In case where a PSU identification needs to be updated when starting the cancellation authorisation: The link to the cancellation-authorisations end-point, where the cancellation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': In case of a yet to be created authorisation sub-resource: The link to the cancelation authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the cancellation-authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element 'scaMethods' ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksPaymentInitiationCancel extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationStatus.java b/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationStatus.java index abe7c6b..2253891 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationStatus.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksPaymentInitiationStatus.java @@ -22,7 +22,7 @@ * Should refer to next steps if the problem can be resolved via the interface e.g. for re-submission of credentials. */ @Schema(description = "Should refer to next steps if the problem can be resolved via the interface e.g. for re-submission of credentials. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksPaymentInitiationStatus extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksSelectPsuAuthenticationMethod.java b/src/main/java/de/adorsys/psd2/client/model/LinksSelectPsuAuthenticationMethod.java index dce30f3..31e2a50 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksSelectPsuAuthenticationMethod.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksSelectPsuAuthenticationMethod.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. **Remark:** This method can be applied before or after PSU identification. This leads to many possible hyperlink responses. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. - 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. - 'updatePsuIdentification': The link to the authorisation or cancellation authorisation sub-resource, where PSU identification data needs to be uploaded. - 'updatePsuAuthentication': The link to the authorisation or cancellation authorisation sub-resource, where PSU authentication data needs to be uploaded. - 'updateEncryptedPsuAuthentication': The link to the authorisation or cancellation authorisation sub-resource, where PSU authentication encrypted data needs to be uploaded. - 'updateAdditionalPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional PSU password. - 'updateAdditionalEncryptedPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional encrypted PSU password. - 'authoriseTransaction': The link to the authorisation or cancellation authorisation sub-resource, where the authorisation data has to be uploaded, e.g. the TOP received by SMS. - 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. **Remark:** This method can be applied before or after PSU identification. This leads to many possible hyperlink responses. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. - 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. - 'updatePsuIdentification': The link to the authorisation or cancellation authorisation sub-resource, where PSU identification data needs to be uploaded. - 'updatePsuAuthentication': The link to the authorisation or cancellation authorisation sub-resource, where PSU authentication data needs to be uploaded. - 'updateEncryptedPsuAuthentication': The link to the authorisation or cancellation authorisation sub-resource, where PSU authentication encrypted data needs to be uploaded. - 'updateAdditionalPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional PSU password. - 'updateAdditionalEncryptedPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional encrypted PSU password. - 'authoriseTransaction': The link to the authorisation or cancellation authorisation sub-resource, where the authorisation data has to be uploaded, e.g. the TOP received by SMS. - 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksSelectPsuAuthenticationMethod extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksSigningBasket.java b/src/main/java/de/adorsys/psd2/client/model/LinksSigningBasket.java index df3b7e0..231905f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksSigningBasket.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksSigningBasket.java @@ -26,7 +26,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): * 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. * 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'startAuthorisation': In case, where an explicit start of the transaction authorisation is needed, but no more data needs to be updated (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the encrypted PSU authentication data. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element 'scaMethods' * 'startAuthorisationWithTransactionAuthorisation': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while authorising the transaction e.g. by uploading an OTP received by SMS. * 'self': The link to the payment initiation resource created by this request. This link can be used to retrieve the resource data. * 'status': The link to retrieve the transaction status of the payment initiation. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. This link is only contained, if an authorisation sub-resource has been already created. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): * 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. * 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'startAuthorisation': In case, where an explicit start of the transaction authorisation is needed, but no more data needs to be updated (no authentication method to be selected, no PSU identification nor PSU authentication data to be uploaded). * 'startAuthorisationWithPsuIdentification': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU identification data. * 'startAuthorisationWithPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the PSU authentication data. * 'startAuthorisationWithEncryptedPsuAuthentication': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while uploading the encrypted PSU authentication data. * 'startAuthorisationWithAuthenticationMethodSelection': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while selecting the authentication method. This link is contained under exactly the same conditions as the data element 'scaMethods' * 'startAuthorisationWithTransactionAuthorisation': The link to the authorisation end-point, where the authorisation sub-resource has to be generated while authorising the transaction e.g. by uploading an OTP received by SMS. * 'self': The link to the payment initiation resource created by this request. This link can be used to retrieve the resource data. * 'status': The link to retrieve the transaction status of the payment initiation. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. This link is only contained, if an authorisation sub-resource has been already created. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksSigningBasket { @SerializedName("scaRedirect") private HrefType scaRedirect = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksStartScaProcess.java b/src/main/java/de/adorsys/psd2/client/model/LinksStartScaProcess.java index 4d60f7b..9abe4ae 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksStartScaProcess.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksStartScaProcess.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. - 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. - 'updatePsuIdentification': The link to the authorisation or cancellation authorisation sub-resource, where PSU identification data needs to be uploaded. - 'startAuthorisationWithPsuAuthentication': The link to the authorisation or cancellation authorisation sub-resource, where PSU authentication data needs to be uploaded. - 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. - 'selectAuthenticationMethod': The link to the authorisation or cancellation authorisation sub-resource, where the selected authentication method needs to be uploaded. This link is contained under exactly the same conditions as the data element 'scaMethods'. - 'authoriseTransaction': The link to the authorisation or cancellation authorisation sub-resource, where the authorisation data has to be uploaded, e.g. the TOP received by SMS. - 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaRedirect': In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. - 'scaOAuth': In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. * 'confirmation': Might be added by the ASPSP if either the \"scaRedirect\" or \"scaOAuth\" hyperlink is returned in the same response message. This hyperlink defines the URL to the resource which needs to be updated with * a confirmation code as retrieved after the plain redirect authentication process with the ASPSP authentication server or * an access token as retrieved by submitting an authorization code after the integrated OAuth based authentication process with the ASPSP authentication server. - 'updatePsuIdentification': The link to the authorisation or cancellation authorisation sub-resource, where PSU identification data needs to be uploaded. - 'startAuthorisationWithPsuAuthentication': The link to the authorisation or cancellation authorisation sub-resource, where PSU authentication data needs to be uploaded. - 'startAuthorisationWithEncryptedPsuAuthentication': Same as startAuthorisactionWithPsuAuthentication where the authentication data need to be encrypted on application layer in uploading. - 'selectAuthenticationMethod': The link to the authorisation or cancellation authorisation sub-resource, where the selected authentication method needs to be uploaded. This link is contained under exactly the same conditions as the data element 'scaMethods'. - 'authoriseTransaction': The link to the authorisation or cancellation authorisation sub-resource, where the authorisation data has to be uploaded, e.g. the TOP received by SMS. - 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksStartScaProcess extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksTransactionDetails.java b/src/main/java/de/adorsys/psd2/client/model/LinksTransactionDetails.java index 4093e7a..653af6f 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksTransactionDetails.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksTransactionDetails.java @@ -21,7 +21,7 @@ * LinksTransactionDetails */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksTransactionDetails extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuAuthentication.java b/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuAuthentication.java index 7a299a7..28bf570 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuAuthentication.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuAuthentication.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. Might be contained, if several authentication methods are available for the PSU. Type of links admitted in this response: * 'updateAdditionalPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional PSU password. This link is only contained in rare cases, where such additional passwords are needed for PSU authentications. * 'updateAdditionalEncryptedPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional encrypted PSU password. This link is only contained in rare cases, where such additional passwords are needed for PSU authentications. * 'selectAuthenticationMethod': This is a link to a resource, where the TPP can select the applicable second factor authentication methods for the PSU, if there were several available authentication methods. This link is only contained, if the PSU is already identified or authenticated with the first relevant factor or alternatively an access token, if SCA is required and if the PSU has a choice between different authentication methods. If this link is contained, then there is also the data element 'scaMethods' contained in the response body. * 'authoriseTransaction': The link to the resource, where the \"Transaction authorisation request\" is sent to. This is the link to the resource which will authorise the transaction by checking the SCA authentication data within the Embedded SCA approach. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. Might be contained, if several authentication methods are available for the PSU. Type of links admitted in this response: * 'updateAdditionalPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional PSU password. This link is only contained in rare cases, where such additional passwords are needed for PSU authentications. * 'updateAdditionalEncryptedPsuAuthentication': The link to the payment initiation or account information resource, which needs to be updated by an additional encrypted PSU password. This link is only contained in rare cases, where such additional passwords are needed for PSU authentications. * 'selectAuthenticationMethod': This is a link to a resource, where the TPP can select the applicable second factor authentication methods for the PSU, if there were several available authentication methods. This link is only contained, if the PSU is already identified or authenticated with the first relevant factor or alternatively an access token, if SCA is required and if the PSU has a choice between different authentication methods. If this link is contained, then there is also the data element 'scaMethods' contained in the response body. * 'authoriseTransaction': The link to the resource, where the \"Transaction authorisation request\" is sent to. This is the link to the resource which will authorise the transaction by checking the SCA authentication data within the Embedded SCA approach. * 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksUpdatePsuAuthentication extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuIdentification.java b/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuIdentification.java index fa6d991..503c1b1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuIdentification.java +++ b/src/main/java/de/adorsys/psd2/client/model/LinksUpdatePsuIdentification.java @@ -22,7 +22,7 @@ * A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. - 'selectAuthenticationMethod': This is a link to a resource, where the TPP can select the applicable second factor authentication methods for the PSU, if there are several available authentication methods and if the PSU is already sufficiently authenticated.. If this link is contained, then there is also the data element \"scaMethods\" contained in the response body. */ @Schema(description = "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. **Remark:** All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): - 'scaStatus': The link to retrieve the scaStatus of the corresponding authorisation sub-resource. - 'selectAuthenticationMethod': This is a link to a resource, where the TPP can select the applicable second factor authentication methods for the PSU, if there are several available authentication methods and if the PSU is already sufficiently authenticated.. If this link is contained, then there is also the data element \"scaMethods\" contained in the response body. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class LinksUpdatePsuIdentification extends HashMap { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/MonthsOfExecution.java b/src/main/java/de/adorsys/psd2/client/model/MonthsOfExecution.java index 388a058..0f95013 100644 --- a/src/main/java/de/adorsys/psd2/client/model/MonthsOfExecution.java +++ b/src/main/java/de/adorsys/psd2/client/model/MonthsOfExecution.java @@ -21,7 +21,7 @@ * The format is following the regular expression \\d{1,2}. The array is restricted to 11 entries. The values contained in the array entries shall all be different and the maximum value of one entry is 12. This attribute is contained if and only if the frequency equals \"MonthlyVariable\". Example: An execution on January, April and October each year is addressed by [\"1\", \"4\", \"10\"]. */ @Schema(description = "The format is following the regular expression \\d{1,2}. The array is restricted to 11 entries. The values contained in the array entries shall all be different and the maximum value of one entry is 12. This attribute is contained if and only if the frequency equals \"MonthlyVariable\". Example: An execution on January, April and October each year is addressed by [\"1\", \"4\", \"10\"]. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class MonthsOfExecution extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/OtherType.java b/src/main/java/de/adorsys/psd2/client/model/OtherType.java index 3db8815..8156df4 100644 --- a/src/main/java/de/adorsys/psd2/client/model/OtherType.java +++ b/src/main/java/de/adorsys/psd2/client/model/OtherType.java @@ -25,7 +25,7 @@ * In cases where the specifically defined criteria (IBAN, BBAN, MSISDN) are not provided to identify an instance of the respective account type (e.g. a savings account), the ASPSP shall include a proprietary ID of the respective account that uniquely identifies the account for this ASPSP. */ @Schema(description = "In cases where the specifically defined criteria (IBAN, BBAN, MSISDN) are not provided to identify an instance of the respective account type (e.g. a savings account), the ASPSP shall include a proprietary ID of the respective account that uniquely identifies the account for this ASPSP.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class OtherType { @SerializedName("identification") private String identification = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentExchangeRate.java b/src/main/java/de/adorsys/psd2/client/model/PaymentExchangeRate.java index cf4dd25..0c56d61 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentExchangeRate.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentExchangeRate.java @@ -26,7 +26,7 @@ * Exchange Rate. */ @Schema(description = "Exchange Rate.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentExchangeRate { @SerializedName("unitCurrency") private String unitCurrency = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentIdList.java b/src/main/java/de/adorsys/psd2/client/model/PaymentIdList.java index 3670619..d010144 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentIdList.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentIdList.java @@ -21,7 +21,7 @@ * A list of paymentIds. */ @Schema(description = "A list of paymentIds.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentIdList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationBulkElementJson.java b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationBulkElementJson.java index cd5e083..ec1a1d2 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationBulkElementJson.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationBulkElementJson.java @@ -33,7 +33,7 @@ * Generic body for a bulk payment initiation entry. The bulk entry type is a type which follows the JSON formats for the supported products for single payments excluding the data elements (if supported): * debtorAccount * requestedExecutionDate, * requestedExecutionTime. These data elements may not be contained in any bulk entry. This data object can be used to represent valid bulk payment initiations entry for the following JSON based payment product, which where defined in the Implementation Guidelines: * sepa-credit-transfers * instant-sepa-credit-transfers * target-2-payments * cross-border-credit-transfers For the convenience of the implementer additional which are already predefined in the Implementation Guidelines are included (but commented in source code), such that an ASPSP may add them easily. Take care: Since the format is intended to fit for all payment products there are additional conditions which are NOT covered by this specification. Please check the Implementation Guidelines for details. The following data element are depending on the actual payment product available (in source code): <table style=\"width:100%\"> <tr><th>Data Element</th><th>SCT EU Core</th><th>SCT INST EU Core</th><th>Target2 Paym. Core</th><th>Cross Border CT Core</th></tr> <tr><td>endToEndIdentification</td><td> optional</td> <td>optional</td> <td>optional</td> <td>n.a.</td> </tr> <tr><td>instructionIdentification</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>debtorName</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>debtorId</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>ultimateDebtor</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>instructedAmount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>currencyOfTransfer</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>exchangeRateInformation</td> <td>n.a.</td> <td>n.a.</td><td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorAccount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>creditorAgent</td> <td>optional</td> <td>optional</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>creditorAgentName</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorName</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>creditorId</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorAddress</td>optional</td> <td>optional</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>creditorNameAndAddress</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>ultimateCreditor</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>purposeCode</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>chargeBearer</td> <td>n.a.</td> <td>n.a.</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>serviceLevel</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a. </td> </tr> <tr><td>remittanceInformationUnstructured</td> <td>optional</td> <td>optional</td> <td> optional</td> <td>optional</td> </tr> <tr><td>remittanceInformationUnstructuredArray</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>remittanceInformationStructured</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>remittanceInformationStructuredArray</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> </td></tr> </table> IMPORTANT: In this API definition the following holds: * All data elements mentioned above are defined, but some of them are commented, i.e. they are only visible in the source code and can be used by uncommenting them. * Data elements which are mandatory in the table above for all payment products are set to be mandatory in this specification. * Data elements which are indicated in the table above as n.a. for all payment products are commented in the source code. * Data elements which are indicated to be option, conditional or mandatory for at least one payment product in the table above are set to be optional in the s specification except the case where all are defined to be mandatory. * Data element which are indicated to be n.a. can be used by the ASPS if needed. In this case uncomment the the related lines in the source code. * If one uses this data types for some payment products he has to ensure that the used data type is valid according to the underlying payment product, e.g. by some appropriate validations. */ @Schema(description = "Generic body for a bulk payment initiation entry. The bulk entry type is a type which follows the JSON formats for the supported products for single payments excluding the data elements (if supported): * debtorAccount * requestedExecutionDate, * requestedExecutionTime. These data elements may not be contained in any bulk entry. This data object can be used to represent valid bulk payment initiations entry for the following JSON based payment product, which where defined in the Implementation Guidelines: * sepa-credit-transfers * instant-sepa-credit-transfers * target-2-payments * cross-border-credit-transfers For the convenience of the implementer additional which are already predefined in the Implementation Guidelines are included (but commented in source code), such that an ASPSP may add them easily. Take care: Since the format is intended to fit for all payment products there are additional conditions which are NOT covered by this specification. Please check the Implementation Guidelines for details. The following data element are depending on the actual payment product available (in source code): optional
Data ElementSCT EU CoreSCT INST EU CoreTarget2 Paym. CoreCross Border CT Core
endToEndIdentification optional optional optional n.a.
instructionIdentification n.a. n.a. n.a. n.a.
debtorName n.a. n.a. n.a. n.a.
debtorId n.a. n.a. n.a. n.a.
ultimateDebtor n.a. n.a. n.a. n.a.
instructedAmount mandatory mandatory mandatory mandatory
currencyOfTransfer n.a. n.a. n.a. n.a.
exchangeRateInformation n.a. n.a.n.a. n.a.
creditorAccount mandatory mandatory mandatory mandatory
creditorAgent optional optional optional conditional
creditorAgentName n.a. n.a. n.a. n.a.
creditorName mandatory mandatory mandatory mandatory
creditorId n.a. n.a. n.a. n.a.
creditorAddress optional optional conditional
creditorNameAndAddress n.a. n.a. n.a. n.a.
ultimateCreditor n.a. n.a. n.a. n.a.
purposeCode n.a. n.a. n.a. n.a.
chargeBearer n.a. n.a. optional conditional
serviceLevel n.a. n.a. n.a. n.a.
remittanceInformationUnstructured optional optional optional optional
remittanceInformationUnstructuredArray n.a. n.a. n.a. n.a.
remittanceInformationStructured n.a. n.a. n.a. n.a.
remittanceInformationStructuredArray n.a. n.a. n.a. n.a.
IMPORTANT: In this API definition the following holds: * All data elements mentioned above are defined, but some of them are commented, i.e. they are only visible in the source code and can be used by uncommenting them. * Data elements which are mandatory in the table above for all payment products are set to be mandatory in this specification. * Data elements which are indicated in the table above as n.a. for all payment products are commented in the source code. * Data elements which are indicated to be option, conditional or mandatory for at least one payment product in the table above are set to be optional in the s specification except the case where all are defined to be mandatory. * Data element which are indicated to be n.a. can be used by the ASPS if needed. In this case uncomment the the related lines in the source code. * If one uses this data types for some payment products he has to ensure that the used data type is valid according to the underlying payment product, e.g. by some appropriate validations. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentInitiationBulkElementJson { @SerializedName("endToEndIdentification") private String endToEndIdentification = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationCancelResponse202.java b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationCancelResponse202.java index dc313d0..42db69a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationCancelResponse202.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationCancelResponse202.java @@ -34,7 +34,7 @@ * Body of the response for a successful cancel payment request. */ @Schema(description = "Body of the response for a successful cancel payment request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentInitiationCancelResponse202 { @SerializedName("transactionStatus") private TransactionStatus transactionStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationJson.java b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationJson.java index e81478b..371bb70 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationJson.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationJson.java @@ -34,7 +34,7 @@ * Generic Body for a payment initiation via JSON. This generic JSON body can be used to represent valid payment initiations for the following JSON based payment product, which where defined in the Implementation Guidelines: * sepa-credit-transfers * instant-sepa-credit-transfers * target-2-payments * cross-border-credit-transfers For the convenience of the implementer additional which are already predefined in the Implementation Guidelines are included (but commented in source code), such that an ASPSP may add them easily. Take care: Since the format is intended to fit for all payment products there are additional conditions which are NOT covered by this specification. Please check the Implementation Guidelines for details. The following data element are depending on the actual payment product available (in source code): <table style=\"width:100%\"> <tr><th>Data Element</th><th>SCT EU Core</th><th>SCT INST EU Core</th><th>Target2 Paym. Core</th><th>Cross Border CT Core</th></tr> <tr><td>endToEndIdentification</td><td> optional</td> <td>optional</td> <td>optional</td> <td>n.a.</td> </tr> <tr><td>instructionIdentification</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>debtorName</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>debtorAccount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>debtorId</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>ultimateDebtor</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>instructedAmount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>currencyOfTransfer</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>exchangeRateInformation</td> <td>n.a.</td> <td>n.a.</td><td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorAccount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>creditorAgent</td> <td>optional</td> <td>optional</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>creditorAgentName</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorName</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>creditorId</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorAddress</td>optional</td> <td>optional</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>creditorNameAndAddress</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>ultimateCreditor</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>purposeCode</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>chargeBearer</td> <td>n.a.</td> <td>n.a.</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>serviceLevel</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a. </td> </tr> <tr><td>remittanceInformationUnstructured</td> <td>optional</td> <td>optional</td> <td> optional</td> <td>optional</td> </tr> <tr><td>remittanceInformationUnstructuredArray</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>remittanceInformationStructured</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>remittanceInformationStructuredArray</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>requestedExecutionDate</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>requestedExecutionTime</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> </td></tr> </table> IMPORTANT: In this API definition the following holds: * All data elements mentioned above are defined, but some of them are commented, i.e. they are only visible in the source code and can be used by uncommenting them. * Data elements which are mandatory in the table above for all payment products are set to be mandatory in this specification. * Data elements which are indicated in the table above as n.a. for all payment products are commented in the source code. * Data elements which are indicated to be option, conditional or mandatory for at least one payment product in the table above are set to be optional in the s specification except the case where all are defined to be mandatory. * Data element which are indicated to be n.a. can be used by the ASPS if needed. In this case uncomment the the related lines in the source code. * If one uses this data types for some payment products he has to ensure that the used data type is valid according to the underlying payment product, e.g. by some appropriate validations. */ @Schema(description = "Generic Body for a payment initiation via JSON. This generic JSON body can be used to represent valid payment initiations for the following JSON based payment product, which where defined in the Implementation Guidelines: * sepa-credit-transfers * instant-sepa-credit-transfers * target-2-payments * cross-border-credit-transfers For the convenience of the implementer additional which are already predefined in the Implementation Guidelines are included (but commented in source code), such that an ASPSP may add them easily. Take care: Since the format is intended to fit for all payment products there are additional conditions which are NOT covered by this specification. Please check the Implementation Guidelines for details. The following data element are depending on the actual payment product available (in source code): optional
Data ElementSCT EU CoreSCT INST EU CoreTarget2 Paym. CoreCross Border CT Core
endToEndIdentification optional optional optional n.a.
instructionIdentification n.a. n.a. n.a. n.a.
debtorName n.a. n.a. n.a. n.a.
debtorAccount mandatory mandatory mandatory mandatory
debtorId n.a. n.a. n.a. n.a.
ultimateDebtor n.a. n.a. n.a. n.a.
instructedAmount mandatory mandatory mandatory mandatory
currencyOfTransfer n.a. n.a. n.a. n.a.
exchangeRateInformation n.a. n.a.n.a. n.a.
creditorAccount mandatory mandatory mandatory mandatory
creditorAgent optional optional optional conditional
creditorAgentName n.a. n.a. n.a. n.a.
creditorName mandatory mandatory mandatory mandatory
creditorId n.a. n.a. n.a. n.a.
creditorAddress optional optional conditional
creditorNameAndAddress n.a. n.a. n.a. n.a.
ultimateCreditor n.a. n.a. n.a. n.a.
purposeCode n.a. n.a. n.a. n.a.
chargeBearer n.a. n.a. optional conditional
serviceLevel n.a. n.a. n.a. n.a.
remittanceInformationUnstructured optional optional optional optional
remittanceInformationUnstructuredArray n.a. n.a. n.a. n.a.
remittanceInformationStructured n.a. n.a. n.a. n.a.
remittanceInformationStructuredArray n.a. n.a. n.a. n.a.
requestedExecutionDate n.a. n.a. n.a. n.a.
requestedExecutionTime n.a. n.a. n.a. n.a.
IMPORTANT: In this API definition the following holds: * All data elements mentioned above are defined, but some of them are commented, i.e. they are only visible in the source code and can be used by uncommenting them. * Data elements which are mandatory in the table above for all payment products are set to be mandatory in this specification. * Data elements which are indicated in the table above as n.a. for all payment products are commented in the source code. * Data elements which are indicated to be option, conditional or mandatory for at least one payment product in the table above are set to be optional in the s specification except the case where all are defined to be mandatory. * Data element which are indicated to be n.a. can be used by the ASPS if needed. In this case uncomment the the related lines in the source code. * If one uses this data types for some payment products he has to ensure that the used data type is valid according to the underlying payment product, e.g. by some appropriate validations. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentInitiationJson { @SerializedName("endToEndIdentification") private String endToEndIdentification = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationRequestResponse201.java b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationRequestResponse201.java index d04cdd3..222521a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationRequestResponse201.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationRequestResponse201.java @@ -35,7 +35,7 @@ * Body of the response for a successful payment initiation request. */ @Schema(description = "Body of the response for a successful payment initiation request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentInitiationRequestResponse201 { @SerializedName("transactionStatus") private TransactionStatus transactionStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationStatusResponse200Json.java b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationStatusResponse200Json.java index 2f1d6c1..35bc461 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationStatusResponse200Json.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationStatusResponse200Json.java @@ -31,7 +31,7 @@ * Body of the response for a successful payment initiation status request in case of an JSON based endpoint. *Remark:* If the PSU does not complete a required SCA within the required timeframe the payment resource's status must be set to \"RJCT\". Particularly, if a multi-level-SCA is required and the number of successful SCAs during the required timeframe is insufficient, the status must also be set to \"RJCT\". */ @Schema(description = "Body of the response for a successful payment initiation status request in case of an JSON based endpoint. *Remark:* If the PSU does not complete a required SCA within the required timeframe the payment resource's status must be set to \"RJCT\". Particularly, if a multi-level-SCA is required and the number of successful SCAs during the required timeframe is insufficient, the status must also be set to \"RJCT\".") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentInitiationStatusResponse200Json { @SerializedName("transactionStatus") private TransactionStatus transactionStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationWithStatusResponse.java b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationWithStatusResponse.java index 661af0e..bec7aba 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationWithStatusResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/PaymentInitiationWithStatusResponse.java @@ -37,7 +37,7 @@ * Generic JSON response body consistion of the corresponding payment initiation JSON body together with an optional transaction status field. */ @Schema(description = "Generic JSON response body consistion of the corresponding payment initiation JSON body together with an optional transaction status field. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PaymentInitiationWithStatusResponse { @SerializedName("endToEndIdentification") private String endToEndIdentification = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationJson.java b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationJson.java index 1012056..bc0a90e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationJson.java +++ b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationJson.java @@ -37,7 +37,7 @@ * Generic Body for a periodic payment initiation via JSON. This generic JSON body can be used to represent valid periodic payment initiations for the following JSON based payment product, which where defined in the Implementation Guidelines: * sepa-credit-transfers * instant-sepa-credit-transfers * target-2-payments * cross-border-credit-transfers For the convenience of the implementer additional which are already predefined in the Implementation Guidelines are included (but commented in source code), such that an ASPSP may add them easily. Take care: Since the format is intended to fit for all payment products there are additional conditions which are NOT covered by this specification. Please check the Implementation Guidelines for details. The following data element are depending on the actual payment product available (in source code): <table style=\"width:100%\"> <tr><th>Data Element</th><th>SCT EU Core</th><th>SCT INST EU Core</th><th>Target2 Paym. Core</th><th>Cross Border CT Core</th></tr> <tr><td>endToEndIdentification</td><td> optional</td> <td>optional</td> <td>optional</td> <td>n.a.</td> </tr> <tr><td>instructionIdentification</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>debtorName</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>debtorAccount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>debtorId</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>ultimateDebtor</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>instructedAmount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>currencyOfTransfer</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>exchangeRateInformation</td> <td>n.a.</td> <td>n.a.</td><td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorAccount</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>creditorAgent</td> <td>optional</td> <td>optional</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>creditorAgentName</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorName</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>creditorId</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>creditorAddress</td>optional</td> <td>optional</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>creditorNameAndAddress</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>ultimateCreditor</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>purposeCode</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>chargeBearer</td> <td>n.a.</td> <td>n.a.</td> <td>optional</td> <td>conditional </td> </tr> <tr><td>serviceLevel</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a. </td> </tr> <tr><td>remittanceInformationUnstructured</td> <td>optional</td> <td>optional</td> <td> optional</td> <td>optional</td> </tr> <tr><td>remittanceInformationUnstructuredArray</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>remittanceInformationStructured</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>remittanceInformationStructuredArray</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>requestedExecutionDate</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>requestedExecutionTime</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> <td>n.a.</td> </tr> <tr><td>startDate</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>executionRule</td> <td>optional</td> <td>optional</td> <td>optional</td> <td>optional</td> </tr> <tr><td>endDate</td> <td>optional</td> <td>optional</td> <td>optional</td> <td>optional</td> </tr> <tr><td>frequency</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> <td>mandatory</td> </tr> <tr><td>dayOfExecution</td> <td>conditional</td> <td>conditional</td> <td>conditional</td> <td>conditional</td> </tr> </td></tr> </table> IMPORTANT: In this API definition the following holds: * All data elements mentioned above are defined, but some of them are commented, i.e. they are only visible in the source code and can be used by uncommenting them. * Data elements which are mandatory in the table above for all payment products are set to be mandatory in this specification. * Data elements which are indicated in the table above as n.a. for all payment products are commented in the source code. * Data elements which are indicated to be option, conditional or mandatory for at least one payment product in the table above are set to be optional in the s specification except the case where all are defined to be mandatory. * Data element which are indicated to be n.a. can be used by the ASPS if needed. In this case uncomment the the related lines in the source code. * If one uses this data types for some payment products he has to ensure that the used data type is valid according to the underlying payment product, e.g. by some appropriate validations. */ @Schema(description = "Generic Body for a periodic payment initiation via JSON. This generic JSON body can be used to represent valid periodic payment initiations for the following JSON based payment product, which where defined in the Implementation Guidelines: * sepa-credit-transfers * instant-sepa-credit-transfers * target-2-payments * cross-border-credit-transfers For the convenience of the implementer additional which are already predefined in the Implementation Guidelines are included (but commented in source code), such that an ASPSP may add them easily. Take care: Since the format is intended to fit for all payment products there are additional conditions which are NOT covered by this specification. Please check the Implementation Guidelines for details. The following data element are depending on the actual payment product available (in source code): optional
Data ElementSCT EU CoreSCT INST EU CoreTarget2 Paym. CoreCross Border CT Core
endToEndIdentification optional optional optional n.a.
instructionIdentification n.a. n.a. n.a. n.a.
debtorName n.a. n.a. n.a. n.a.
debtorAccount mandatory mandatory mandatory mandatory
debtorId n.a. n.a. n.a. n.a.
ultimateDebtor n.a. n.a. n.a. n.a.
instructedAmount mandatory mandatory mandatory mandatory
currencyOfTransfer n.a. n.a. n.a. n.a.
exchangeRateInformation n.a. n.a.n.a. n.a.
creditorAccount mandatory mandatory mandatory mandatory
creditorAgent optional optional optional conditional
creditorAgentName n.a. n.a. n.a. n.a.
creditorName mandatory mandatory mandatory mandatory
creditorId n.a. n.a. n.a. n.a.
creditorAddress optional optional conditional
creditorNameAndAddress n.a. n.a. n.a. n.a.
ultimateCreditor n.a. n.a. n.a. n.a.
purposeCode n.a. n.a. n.a. n.a.
chargeBearer n.a. n.a. optional conditional
serviceLevel n.a. n.a. n.a. n.a.
remittanceInformationUnstructured optional optional optional optional
remittanceInformationUnstructuredArray n.a. n.a. n.a. n.a.
remittanceInformationStructured n.a. n.a. n.a. n.a.
remittanceInformationStructuredArray n.a. n.a. n.a. n.a.
requestedExecutionDate n.a. n.a. n.a. n.a.
requestedExecutionTime n.a. n.a. n.a. n.a.
startDate mandatory mandatory mandatory mandatory
executionRule optional optional optional optional
endDate optional optional optional optional
frequency mandatory mandatory mandatory mandatory
dayOfExecution conditional conditional conditional conditional
IMPORTANT: In this API definition the following holds: * All data elements mentioned above are defined, but some of them are commented, i.e. they are only visible in the source code and can be used by uncommenting them. * Data elements which are mandatory in the table above for all payment products are set to be mandatory in this specification. * Data elements which are indicated in the table above as n.a. for all payment products are commented in the source code. * Data elements which are indicated to be option, conditional or mandatory for at least one payment product in the table above are set to be optional in the s specification except the case where all are defined to be mandatory. * Data element which are indicated to be n.a. can be used by the ASPS if needed. In this case uncomment the the related lines in the source code. * If one uses this data types for some payment products he has to ensure that the used data type is valid according to the underlying payment product, e.g. by some appropriate validations. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PeriodicPaymentInitiationJson { @SerializedName("endToEndIdentification") private String endToEndIdentification = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationMultipartBody.java b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationMultipartBody.java index b71efd3..d821cce 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationMultipartBody.java +++ b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationMultipartBody.java @@ -27,7 +27,7 @@ * The multipart message definition for the initiation of a periodic payment initiation where the information of the payment is contained in a pain.001 message (Part 1) and the additional information related to the periodic payment is an additional JSON message (Part 2). */ @Schema(description = "The multipart message definition for the initiation of a periodic payment initiation where the information of the payment is contained in a pain.001 message (Part 1) and the additional information related to the periodic payment is an additional JSON message (Part 2). ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PeriodicPaymentInitiationMultipartBody { @SerializedName("xml_sct") private OneOfPeriodicPaymentInitiationMultipartBodyXmlSct xmlSct = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationWithStatusResponse.java b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationWithStatusResponse.java index f2abb22..f510c61 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationWithStatusResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationWithStatusResponse.java @@ -38,7 +38,7 @@ * Generic JSON response body consistion of the corresponding periodic payment initiation JSON body together with an optional transaction status field. */ @Schema(description = "Generic JSON response body consistion of the corresponding periodic payment initiation JSON body together with an optional transaction status field. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PeriodicPaymentInitiationWithStatusResponse { @SerializedName("endToEndIdentification") private String endToEndIdentification = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationXmlPart2StandingorderTypeJson.java b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationXmlPart2StandingorderTypeJson.java index 82599d2..ebc299d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationXmlPart2StandingorderTypeJson.java +++ b/src/main/java/de/adorsys/psd2/client/model/PeriodicPaymentInitiationXmlPart2StandingorderTypeJson.java @@ -30,7 +30,7 @@ * The body part 2 of a periodic payment initiation request contains the execution related information of the periodic payment. */ @Schema(description = "The body part 2 of a periodic payment initiation request contains the execution related information of the periodic payment. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PeriodicPaymentInitiationXmlPart2StandingorderTypeJson { @SerializedName("startDate") private LocalDate startDate = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/PsuData.java b/src/main/java/de/adorsys/psd2/client/model/PsuData.java index 6639741..fbdd82a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/PsuData.java +++ b/src/main/java/de/adorsys/psd2/client/model/PsuData.java @@ -25,7 +25,7 @@ * PSU Data for Update PSU authentication. */ @Schema(description = "PSU Data for Update PSU authentication.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class PsuData { @SerializedName("password") private String password = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ReadAccountBalanceResponse200.java b/src/main/java/de/adorsys/psd2/client/model/ReadAccountBalanceResponse200.java index 4a7a9d3..652b4d6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ReadAccountBalanceResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/ReadAccountBalanceResponse200.java @@ -27,7 +27,7 @@ * Body of the response for a successful read balance for an account request. */ @Schema(description = "Body of the response for a successful read balance for an account request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ReadAccountBalanceResponse200 { @SerializedName("account") private AccountReference account = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ReadCardAccountBalanceResponse200.java b/src/main/java/de/adorsys/psd2/client/model/ReadCardAccountBalanceResponse200.java index aa1bd25..b88300e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ReadCardAccountBalanceResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/ReadCardAccountBalanceResponse200.java @@ -27,7 +27,7 @@ * Body of the response for a successful read balance for a card account request. */ @Schema(description = "Body of the response for a successful read balance for a card account request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ReadCardAccountBalanceResponse200 { @SerializedName("cardAccount") private AccountReference cardAccount = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructured.java b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructured.java index 4b79904..d9693ed 100644 --- a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructured.java +++ b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructured.java @@ -25,7 +25,7 @@ * Structured remittance information. */ @Schema(description = "Structured remittance information. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class RemittanceInformationStructured { @SerializedName("reference") private String reference = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredArray.java b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredArray.java index bba2eef..eeeedd5 100644 --- a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredArray.java +++ b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredArray.java @@ -22,7 +22,7 @@ * Array of structured remittance information. */ @Schema(description = "Array of structured remittance information. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class RemittanceInformationStructuredArray extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredMax140.java b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredMax140.java index a6d54a4..0423f3c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredMax140.java +++ b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationStructuredMax140.java @@ -25,7 +25,7 @@ * Structured remittance information Max */ @Schema(description = "Structured remittance information Max ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class RemittanceInformationStructuredMax140 { @SerializedName("reference") private String reference = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationUnstructuredArray.java b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationUnstructuredArray.java index b681fa0..7e06b8e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationUnstructuredArray.java +++ b/src/main/java/de/adorsys/psd2/client/model/RemittanceInformationUnstructuredArray.java @@ -21,7 +21,7 @@ * Array of unstructured remittance information. */ @Schema(description = "Array of unstructured remittance information. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class RemittanceInformationUnstructuredArray extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRate.java b/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRate.java index 71e8176..f810372 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRate.java +++ b/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRate.java @@ -26,7 +26,7 @@ * Exchange Rate. */ @Schema(description = "Exchange Rate.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ReportExchangeRate { @SerializedName("sourceCurrency") private String sourceCurrency = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRateList.java b/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRateList.java index 9eba865..2726a6a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRateList.java +++ b/src/main/java/de/adorsys/psd2/client/model/ReportExchangeRateList.java @@ -22,7 +22,7 @@ * Array of exchange rates. */ @Schema(description = "Array of exchange rates.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ReportExchangeRateList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/ScaMethods.java b/src/main/java/de/adorsys/psd2/client/model/ScaMethods.java index 84c8304..631e43d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ScaMethods.java +++ b/src/main/java/de/adorsys/psd2/client/model/ScaMethods.java @@ -22,7 +22,7 @@ * This data element might be contained, if SCA is required and if the PSU has a choice between different authentication methods. Depending on the risk management of the ASPSP this choice might be offered before or after the PSU has been identified with the first relevant factor, or if an access token is transported. If this data element is contained, then there is also a hyperlink of type 'startAuthorisationWithAuthenticationMethodSelection' contained in the response body. These methods shall be presented towards the PSU for selection by the TPP. */ @Schema(description = "This data element might be contained, if SCA is required and if the PSU has a choice between different authentication methods. Depending on the risk management of the ASPSP this choice might be offered before or after the PSU has been identified with the first relevant factor, or if an access token is transported. If this data element is contained, then there is also a hyperlink of type 'startAuthorisationWithAuthenticationMethodSelection' contained in the response body. These methods shall be presented towards the PSU for selection by the TPP. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ScaMethods extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/ScaStatusResponse.java b/src/main/java/de/adorsys/psd2/client/model/ScaStatusResponse.java index 2e2d717..4eba741 100644 --- a/src/main/java/de/adorsys/psd2/client/model/ScaStatusResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/ScaStatusResponse.java @@ -30,7 +30,7 @@ * Body of the JSON response with SCA Status. */ @Schema(description = "Body of the JSON response with SCA Status.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class ScaStatusResponse { @SerializedName("scaStatus") private ScaStatus scaStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethod.java b/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethod.java index 7a91684..7cd5f90 100644 --- a/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethod.java +++ b/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethod.java @@ -25,7 +25,7 @@ * Content of the body of a Select PSU authentication method request */ @Schema(description = "Content of the body of a Select PSU authentication method request ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class SelectPsuAuthenticationMethod { @SerializedName("authenticationMethodId") private String authenticationMethodId = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethodResponse.java b/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethodResponse.java index 5a4b169..263bc2a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethodResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/SelectPsuAuthenticationMethodResponse.java @@ -30,7 +30,7 @@ * Body of the JSON response for a successful select PSU authentication method request. */ @Schema(description = "Body of the JSON response for a successful select PSU authentication method request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class SelectPsuAuthenticationMethodResponse { @SerializedName("transactionFees") private Amount transactionFees = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/SigningBasket.java b/src/main/java/de/adorsys/psd2/client/model/SigningBasket.java index b35dce4..2c07ead 100644 --- a/src/main/java/de/adorsys/psd2/client/model/SigningBasket.java +++ b/src/main/java/de/adorsys/psd2/client/model/SigningBasket.java @@ -27,7 +27,7 @@ * JSON Body of a establish signing basket request. The body shall contain at least one entry. */ @Schema(description = "JSON Body of a establish signing basket request. The body shall contain at least one entry. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class SigningBasket { @SerializedName("paymentIds") private PaymentIdList paymentIds = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse200.java b/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse200.java index 42ca891..fea5d43 100644 --- a/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse200.java @@ -29,7 +29,7 @@ * Body of the JSON response for a successful get signing basket request. * 'payments': payment initiations which shall be authorised through this signing basket. * 'consents': consent objects which shall be authorised through this signing basket. * 'transactionStatus': Only the codes RCVD, ACTC, RJCT are used. * '_links': The ASPSP might integrate hyperlinks to indicate next (authorisation) steps to be taken. */ @Schema(description = "Body of the JSON response for a successful get signing basket request. * 'payments': payment initiations which shall be authorised through this signing basket. * 'consents': consent objects which shall be authorised through this signing basket. * 'transactionStatus': Only the codes RCVD, ACTC, RJCT are used. * '_links': The ASPSP might integrate hyperlinks to indicate next (authorisation) steps to be taken. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class SigningBasketResponse200 { @SerializedName("payments") private PaymentIdList payments = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse201.java b/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse201.java index dfc345d..69158bb 100644 --- a/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse201.java +++ b/src/main/java/de/adorsys/psd2/client/model/SigningBasketResponse201.java @@ -33,7 +33,7 @@ * Body of the JSON response for a successful create signing basket request. */ @Schema(description = "Body of the JSON response for a successful create signing basket request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class SigningBasketResponse201 { @SerializedName("transactionStatus") private TransactionStatusSBS transactionStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/SigningBasketStatusResponse200.java b/src/main/java/de/adorsys/psd2/client/model/SigningBasketStatusResponse200.java index be99dc5..4500a7c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/SigningBasketStatusResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/SigningBasketStatusResponse200.java @@ -26,7 +26,7 @@ * SigningBasketStatusResponse200 */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class SigningBasketStatusResponse200 { @SerializedName("transactionStatus") private TransactionStatusSBS transactionStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/StandingOrderDetails.java b/src/main/java/de/adorsys/psd2/client/model/StandingOrderDetails.java index c386204..9748f3c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/StandingOrderDetails.java +++ b/src/main/java/de/adorsys/psd2/client/model/StandingOrderDetails.java @@ -31,7 +31,7 @@ * Details of underlying standing orders. */ @Schema(description = "Details of underlying standing orders. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class StandingOrderDetails { @SerializedName("startDate") private LocalDate startDate = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/StartScaprocessResponse.java b/src/main/java/de/adorsys/psd2/client/model/StartScaprocessResponse.java index 2b7c7e6..dbcf3b8 100644 --- a/src/main/java/de/adorsys/psd2/client/model/StartScaprocessResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/StartScaprocessResponse.java @@ -33,7 +33,7 @@ * Body of the JSON response for a Start SCA authorisation request. */ @Schema(description = "Body of the JSON response for a Start SCA authorisation request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class StartScaprocessResponse { @SerializedName("scaStatus") private ScaStatus scaStatus = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage201PaymentInitiation.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage201PaymentInitiation.java index 4af8240..aeacd5d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage201PaymentInitiation.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage201PaymentInitiation.java @@ -27,7 +27,7 @@ * TppMessage201PaymentInitiation */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage201PaymentInitiation { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage2XX.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage2XX.java index 230ad82..829ac04 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage2XX.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage2XX.java @@ -27,7 +27,7 @@ * TppMessage2XX */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage2XX { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage400AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage400AIS.java index 5b3899c..d9ead1c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage400AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage400AIS.java @@ -26,7 +26,7 @@ * TppMessage400AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage400AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIIS.java index 02e4868..25d05c2 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIIS.java @@ -26,7 +26,7 @@ * TppMessage400PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage400PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIS.java index c340220..0102ae5 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage400PIS.java @@ -26,7 +26,7 @@ * TppMessage400PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage400PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage400SBS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage400SBS.java index a5c8c45..341086d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage400SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage400SBS.java @@ -26,7 +26,7 @@ * TppMessage400SBS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage400SBS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage401AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage401AIS.java index fcfa6a6..0da77c6 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage401AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage401AIS.java @@ -26,7 +26,7 @@ * TppMessage401AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage401AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIIS.java index 2c834d2..05a5738 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIIS.java @@ -26,7 +26,7 @@ * TppMessage401PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage401PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIS.java index 499439c..24ecc78 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage401PIS.java @@ -26,7 +26,7 @@ * TppMessage401PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage401PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage401SBS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage401SBS.java index e293a73..485aae5 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage401SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage401SBS.java @@ -26,7 +26,7 @@ * TppMessage401SBS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage401SBS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage403AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage403AIS.java index cc959e0..752888d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage403AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage403AIS.java @@ -26,7 +26,7 @@ * TppMessage403AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage403AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIIS.java index e7f922c..1499584 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIIS.java @@ -26,7 +26,7 @@ * TppMessage403PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage403PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIS.java index 7e73084..dcd88a9 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage403PIS.java @@ -26,7 +26,7 @@ * TppMessage403PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage403PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage403SBS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage403SBS.java index bfb2f34..7ff2036 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage403SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage403SBS.java @@ -26,7 +26,7 @@ * TppMessage403SBS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage403SBS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage404AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage404AIS.java index d11b8b7..3ef0e85 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage404AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage404AIS.java @@ -26,7 +26,7 @@ * TppMessage404AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage404AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIIS.java index 25ea99c..1b967eb 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIIS.java @@ -26,7 +26,7 @@ * TppMessage404PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage404PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIS.java index 29fe6f7..a0b0a39 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage404PIS.java @@ -26,7 +26,7 @@ * TppMessage404PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage404PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage404SBS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage404SBS.java index af9aa80..11b5c9a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage404SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage404SBS.java @@ -26,7 +26,7 @@ * TppMessage404SBS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage404SBS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage405AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage405AIS.java index 96e0150..ef59d2b 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage405AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage405AIS.java @@ -26,7 +26,7 @@ * TppMessage405AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage405AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIIS.java index eaef697..709c2a7 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIIS.java @@ -26,7 +26,7 @@ * TppMessage405PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage405PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIS.java index d9f3ba7..1d6bf8e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage405PIS.java @@ -26,7 +26,7 @@ * TppMessage405PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage405PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage405PISCANC.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage405PISCANC.java index f97ef43..001e24d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage405PISCANC.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage405PISCANC.java @@ -26,7 +26,7 @@ * TppMessage405PISCANC */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage405PISCANC { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage405SBS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage405SBS.java index 33182e6..425b30d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage405SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage405SBS.java @@ -26,7 +26,7 @@ * TppMessage405SBS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage405SBS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage406AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage406AIS.java index 56b0d04..b4a3ab9 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage406AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage406AIS.java @@ -26,7 +26,7 @@ * TppMessage406AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage406AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIIS.java index e14f23a..717419a 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIIS.java @@ -26,7 +26,7 @@ * TppMessage406PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage406PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIS.java index 470abfc..484f0ea 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage406PIS.java @@ -26,7 +26,7 @@ * TppMessage406PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage406PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage409AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage409AIS.java index 72633c7..3d94d39 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage409AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage409AIS.java @@ -26,7 +26,7 @@ * TppMessage409AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage409AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIIS.java index 2a78b82..7cf58f1 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIIS.java @@ -26,7 +26,7 @@ * TppMessage409PIIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage409PIIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIS.java index 9e08625..847a445 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage409PIS.java @@ -26,7 +26,7 @@ * TppMessage409PIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage409PIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage409SBS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage409SBS.java index 9e0991c..4ab09ba 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage409SBS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage409SBS.java @@ -26,7 +26,7 @@ * TppMessage409SBS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage409SBS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessage429AIS.java b/src/main/java/de/adorsys/psd2/client/model/TppMessage429AIS.java index ec6c570..c3d0566 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessage429AIS.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessage429AIS.java @@ -26,7 +26,7 @@ * TppMessage429AIS */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessage429AIS { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessageGeneric.java b/src/main/java/de/adorsys/psd2/client/model/TppMessageGeneric.java index c042746..a26692d 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessageGeneric.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessageGeneric.java @@ -26,7 +26,7 @@ * TppMessageGeneric */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessageGeneric { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TppMessageInitiationStatusResponse200.java b/src/main/java/de/adorsys/psd2/client/model/TppMessageInitiationStatusResponse200.java index 42f6ebe..6f6558c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TppMessageInitiationStatusResponse200.java +++ b/src/main/java/de/adorsys/psd2/client/model/TppMessageInitiationStatusResponse200.java @@ -27,7 +27,7 @@ * TppMessageInitiationStatusResponse200 */ -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TppMessageInitiationStatusResponse200 { @SerializedName("category") private TppMessageCategory category = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TransactionAuthorisation.java b/src/main/java/de/adorsys/psd2/client/model/TransactionAuthorisation.java index e108c34..65f15f0 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TransactionAuthorisation.java +++ b/src/main/java/de/adorsys/psd2/client/model/TransactionAuthorisation.java @@ -25,7 +25,7 @@ * Content of the body of a transaction authorisation request */ @Schema(description = "Content of the body of a transaction authorisation request ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TransactionAuthorisation { @SerializedName("scaAuthenticationData") private String scaAuthenticationData = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TransactionDetailsBody.java b/src/main/java/de/adorsys/psd2/client/model/TransactionDetailsBody.java index d1808e3..2a7ad91 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TransactionDetailsBody.java +++ b/src/main/java/de/adorsys/psd2/client/model/TransactionDetailsBody.java @@ -26,7 +26,7 @@ * Transaction details. */ @Schema(description = "Transaction details.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TransactionDetailsBody { @SerializedName("transactionDetails") private Transactions transactionDetails = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TransactionList.java b/src/main/java/de/adorsys/psd2/client/model/TransactionList.java index f9dede1..5f9d1ca 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TransactionList.java +++ b/src/main/java/de/adorsys/psd2/client/model/TransactionList.java @@ -22,7 +22,7 @@ * Array of transaction details. */ @Schema(description = "Array of transaction details.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TransactionList extends ArrayList { @Override diff --git a/src/main/java/de/adorsys/psd2/client/model/Transactions.java b/src/main/java/de/adorsys/psd2/client/model/Transactions.java index 1c1e168..c28536e 100644 --- a/src/main/java/de/adorsys/psd2/client/model/Transactions.java +++ b/src/main/java/de/adorsys/psd2/client/model/Transactions.java @@ -37,7 +37,7 @@ * Transaction details. */ @Schema(description = "Transaction details.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class Transactions { @SerializedName("transactionId") private String transactionId = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/TransactionsResponse200Json.java b/src/main/java/de/adorsys/psd2/client/model/TransactionsResponse200Json.java index f15e9e8..f1b8493 100644 --- a/src/main/java/de/adorsys/psd2/client/model/TransactionsResponse200Json.java +++ b/src/main/java/de/adorsys/psd2/client/model/TransactionsResponse200Json.java @@ -29,7 +29,7 @@ * Body of the JSON response for a successful read transaction list request. This account report contains transactions resulting from the query parameters. */ @Schema(description = "Body of the JSON response for a successful read transaction list request. This account report contains transactions resulting from the query parameters. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class TransactionsResponse200Json { @SerializedName("account") private AccountReference account = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthentication.java b/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthentication.java index e53087f..f19292c 100644 --- a/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthentication.java +++ b/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthentication.java @@ -26,7 +26,7 @@ * Content of the body of a Update PSU authentication request Password subfield is used. */ @Schema(description = "Content of the body of a Update PSU authentication request Password subfield is used. ") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class UpdatePsuAuthentication { @SerializedName("psuData") private PsuData psuData = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthenticationResponse.java b/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthenticationResponse.java index 1869250..3aeaeef 100644 --- a/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthenticationResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/UpdatePsuAuthenticationResponse.java @@ -31,7 +31,7 @@ * Body of the JSON response for a successful update PSU authentication request. */ @Schema(description = "Body of the JSON response for a successful update PSU authentication request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class UpdatePsuAuthenticationResponse { @SerializedName("transactionFees") private Amount transactionFees = null; diff --git a/src/main/java/de/adorsys/psd2/client/model/UpdatePsuIdentificationResponse.java b/src/main/java/de/adorsys/psd2/client/model/UpdatePsuIdentificationResponse.java index 32be68b..54f5858 100644 --- a/src/main/java/de/adorsys/psd2/client/model/UpdatePsuIdentificationResponse.java +++ b/src/main/java/de/adorsys/psd2/client/model/UpdatePsuIdentificationResponse.java @@ -29,7 +29,7 @@ * Body of the JSON response for a successful update PSU identification request. */ @Schema(description = "Body of the JSON response for a successful update PSU identification request.") -@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2023-05-15T10:07:19.009+02:00[Europe/Berlin]") + public class UpdatePsuIdentificationResponse { @SerializedName("transactionFees") private Amount transactionFees = null; From c704262dd2b12b7ac0692990d3a45ecc49c404fb Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:44:30 +0200 Subject: [PATCH 4/7] [maven-release-plugin] prepare release xs2a-client-adapter-1.3.12.1 --- pom.xml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 3a2ddc0..6b4b596 100755 --- a/pom.xml +++ b/pom.xml @@ -1,10 +1,9 @@ - + 4.0.0 de.adorsys.multibanking xs2a-client-adapter - 1.3.13-SNAPSHOT + 1.3.12.1 jar xs2a-client-adapter @@ -28,7 +27,7 @@ scm:git:git@github.com:adorsys/xs2a-adapter.git scm:git:git@github.com:adorsys/xs2a-adapter.git scm:git:git@github.com:adorsys/xs2a-adapter.git - HEAD + xs2a-client-adapter-1.3.12.1 From fcc19e0511cb191500dc20b3eb37d0167ef2e4dc Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:45:41 +0200 Subject: [PATCH 5/7] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6b4b596..08bcb8e 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ de.adorsys.multibanking xs2a-client-adapter - 1.3.12.1 + 1.3.12.2-SNAPSHOT jar xs2a-client-adapter @@ -27,7 +27,7 @@ scm:git:git@github.com:adorsys/xs2a-adapter.git scm:git:git@github.com:adorsys/xs2a-adapter.git scm:git:git@github.com:adorsys/xs2a-adapter.git - xs2a-client-adapter-1.3.12.1 + HEAD From 63beebb4b9cab79ed1793017346a87eee38fd957 Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:46:50 +0200 Subject: [PATCH 6/7] [maven-release-plugin] prepare release xs2a-client-adapter-1.3.12.2 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 08bcb8e..bab8d81 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ de.adorsys.multibanking xs2a-client-adapter - 1.3.12.2-SNAPSHOT + 1.3.12.2 jar xs2a-client-adapter @@ -27,7 +27,7 @@ scm:git:git@github.com:adorsys/xs2a-adapter.git scm:git:git@github.com:adorsys/xs2a-adapter.git scm:git:git@github.com:adorsys/xs2a-adapter.git - HEAD + xs2a-client-adapter-1.3.12.2 From 7de3db1bf0f423f4b963321fda6113a8e2ae49b9 Mon Sep 17 00:00:00 2001 From: Alexander Geist Date: Tue, 16 May 2023 11:47:32 +0200 Subject: [PATCH 7/7] Prepare release 1.3.12.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bab8d81..65b3bae 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ de.adorsys.multibanking xs2a-client-adapter - 1.3.12.2 + 1.3.12.3 jar xs2a-client-adapter