Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk-generation-log/transferwebhooks.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"service": "transferwebhooks",
"project": "java",
"generatedAt": "2026-06-01T09:45:24Z",
"openapiCommitSha": "c0822241f611e20376f72b279f2b3e67dea27a43",
"generatedAt": "2026-06-15T16:42:59Z",
"openapiCommitSha": "fe790646de44602c0531c3ebd57c966876c7a1c7",
"automationCommitSha": "6f06b47d0661f0891defe6b85461d2c367fbd284",
"libraryCommitSha": "b2ec3b93864e9e4a5548fa7e77fccd50da77ec2f"
"libraryCommitSha": "b2998c6eecc506e2d7ef07cc9b1eed1ee389a21b"
}
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,42 @@ public BankAccountV3AccountIdentification(USLocalAccountIdentification o) {
schemas.put("USLocalAccountIdentification", new GenericType<USLocalAccountIdentification>() {});
JSON.registerDescendants(
BankAccountV3AccountIdentification.class, Collections.unmodifiableMap(schemas));
// Initialize and register the discriminator mappings.
Map<String, Class<?>> mappings = new HashMap<>();
mappings.put("auLocal", AULocalAccountIdentification.class);
mappings.put("brLocal", BRLocalAccountIdentification.class);
mappings.put("caLocal", CALocalAccountIdentification.class);
mappings.put("czLocal", CZLocalAccountIdentification.class);
mappings.put("dkLocal", DKLocalAccountIdentification.class);
mappings.put("hkLocal", HKLocalAccountIdentification.class);
mappings.put("huLocal", HULocalAccountIdentification.class);
mappings.put("iban", IbanAccountIdentification.class);
mappings.put("noLocal", NOLocalAccountIdentification.class);
mappings.put("numberAndBic", NumberAndBicAccountIdentification.class);
mappings.put("nzLocal", NZLocalAccountIdentification.class);
mappings.put("plLocal", PLLocalAccountIdentification.class);
mappings.put("seLocal", SELocalAccountIdentification.class);
mappings.put("sgLocal", SGLocalAccountIdentification.class);
mappings.put("ukLocal", UKLocalAccountIdentification.class);
mappings.put("usLocal", USLocalAccountIdentification.class);
mappings.put("AULocalAccountIdentification", AULocalAccountIdentification.class);
mappings.put("BRLocalAccountIdentification", BRLocalAccountIdentification.class);
mappings.put("CALocalAccountIdentification", CALocalAccountIdentification.class);
mappings.put("CZLocalAccountIdentification", CZLocalAccountIdentification.class);
mappings.put("DKLocalAccountIdentification", DKLocalAccountIdentification.class);
mappings.put("HKLocalAccountIdentification", HKLocalAccountIdentification.class);
mappings.put("HULocalAccountIdentification", HULocalAccountIdentification.class);
mappings.put("IbanAccountIdentification", IbanAccountIdentification.class);
mappings.put("NOLocalAccountIdentification", NOLocalAccountIdentification.class);
mappings.put("NZLocalAccountIdentification", NZLocalAccountIdentification.class);
mappings.put("NumberAndBicAccountIdentification", NumberAndBicAccountIdentification.class);
mappings.put("PLLocalAccountIdentification", PLLocalAccountIdentification.class);
mappings.put("SELocalAccountIdentification", SELocalAccountIdentification.class);
mappings.put("SGLocalAccountIdentification", SGLocalAccountIdentification.class);
mappings.put("UKLocalAccountIdentification", UKLocalAccountIdentification.class);
mappings.put("USLocalAccountIdentification", USLocalAccountIdentification.class);
mappings.put("BankAccountV3_accountIdentification", BankAccountV3AccountIdentification.class);
JSON.registerDiscriminator(BankAccountV3AccountIdentification.class, "type", mappings);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public class Modification {

/** The status of the transfer event. */
public enum StatusEnum {
ADVICEAUTHORISED(String.valueOf("adviceAuthorised")),

ADVICEREFUSED(String.valueOf("adviceRefused")),

APPROVALPENDING(String.valueOf("approvalPending")),

ATMWITHDRAWAL(String.valueOf("atmWithdrawal")),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,10 @@ public static ReasonEnum fromValue(String value) {
* bank.
*/
public enum StatusEnum {
ADVICEAUTHORISED(String.valueOf("adviceAuthorised")),

ADVICEREFUSED(String.valueOf("adviceRefused")),

APPROVALPENDING(String.valueOf("approvalPending")),

ATMWITHDRAWAL(String.valueOf("atmWithdrawal")),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,18 @@ public TransferDataCategoryData(PlatformPayment o) {
schemas.put("IssuedCard", new GenericType<IssuedCard>() {});
schemas.put("PlatformPayment", new GenericType<PlatformPayment>() {});
JSON.registerDescendants(TransferDataCategoryData.class, Collections.unmodifiableMap(schemas));
// Initialize and register the discriminator mappings.
Map<String, Class<?>> mappings = new HashMap<>();
mappings.put("bank", BankCategoryData.class);
mappings.put("internal", InternalCategoryData.class);
mappings.put("issuedCard", IssuedCard.class);
mappings.put("platformPayment", PlatformPayment.class);
mappings.put("BankCategoryData", BankCategoryData.class);
mappings.put("InternalCategoryData", InternalCategoryData.class);
mappings.put("IssuedCard", IssuedCard.class);
mappings.put("PlatformPayment", PlatformPayment.class);
mappings.put("TransferData_categoryData", TransferDataCategoryData.class);
JSON.registerDiscriminator(TransferDataCategoryData.class, "type", mappings);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,16 @@ public TransferDataTracking(InternalReviewTrackingData o) {
schemas.put("EstimationTrackingData", new GenericType<EstimationTrackingData>() {});
schemas.put("InternalReviewTrackingData", new GenericType<InternalReviewTrackingData>() {});
JSON.registerDescendants(TransferDataTracking.class, Collections.unmodifiableMap(schemas));
// Initialize and register the discriminator mappings.
Map<String, Class<?>> mappings = new HashMap<>();
mappings.put("confirmation", ConfirmationTrackingData.class);
mappings.put("estimation", EstimationTrackingData.class);
mappings.put("internalReview", InternalReviewTrackingData.class);
mappings.put("ConfirmationTrackingData", ConfirmationTrackingData.class);
mappings.put("EstimationTrackingData", EstimationTrackingData.class);
mappings.put("InternalReviewTrackingData", InternalReviewTrackingData.class);
mappings.put("TransferData_tracking", TransferDataTracking.class);
JSON.registerDiscriminator(TransferDataTracking.class, "type", mappings);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ public static ReasonEnum fromValue(String value) {

/** The status of the transfer event. */
public enum StatusEnum {
ADVICEAUTHORISED(String.valueOf("adviceAuthorised")),

ADVICEREFUSED(String.valueOf("adviceRefused")),

APPROVALPENDING(String.valueOf("approvalPending")),

ATMWITHDRAWAL(String.valueOf("atmWithdrawal")),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,16 @@ public TransferEventEventsDataInner(MerchantPurchaseData o) {
schemas.put("MerchantPurchaseData", new GenericType<MerchantPurchaseData>() {});
JSON.registerDescendants(
TransferEventEventsDataInner.class, Collections.unmodifiableMap(schemas));
// Initialize and register the discriminator mappings.
Map<String, Class<?>> mappings = new HashMap<>();
mappings.put("interchangeData", InterchangeData.class);
mappings.put("issuingTransactionData", IssuingTransactionData.class);
mappings.put("merchantPurchaseData", MerchantPurchaseData.class);
mappings.put("InterchangeData", InterchangeData.class);
mappings.put("IssuingTransactionData", IssuingTransactionData.class);
mappings.put("MerchantPurchaseData", MerchantPurchaseData.class);
mappings.put("TransferEvent_eventsData_inner", TransferEventEventsDataInner.class);
JSON.registerDiscriminator(TransferEventEventsDataInner.class, "type", mappings);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,16 @@ public TransferEventTrackingData(InternalReviewTrackingData o) {
schemas.put("EstimationTrackingData", new GenericType<EstimationTrackingData>() {});
schemas.put("InternalReviewTrackingData", new GenericType<InternalReviewTrackingData>() {});
JSON.registerDescendants(TransferEventTrackingData.class, Collections.unmodifiableMap(schemas));
// Initialize and register the discriminator mappings.
Map<String, Class<?>> mappings = new HashMap<>();
mappings.put("confirmation", ConfirmationTrackingData.class);
mappings.put("estimation", EstimationTrackingData.class);
mappings.put("internalReview", InternalReviewTrackingData.class);
mappings.put("ConfirmationTrackingData", ConfirmationTrackingData.class);
mappings.put("EstimationTrackingData", EstimationTrackingData.class);
mappings.put("InternalReviewTrackingData", InternalReviewTrackingData.class);
mappings.put("TransferEvent_trackingData", TransferEventTrackingData.class);
JSON.registerDiscriminator(TransferEventTrackingData.class, "type", mappings);
}

@Override
Expand Down