From 607e17f82c1180372454e29be15299f443d921fb Mon Sep 17 00:00:00 2001 From: appscisumup Date: Tue, 20 Jan 2026 18:21:09 +0000 Subject: [PATCH 1/2] chore: synced local 'openapi.json' with remote 'specs/openapi.json' --- openapi.json | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/openapi.json b/openapi.json index 63e6101..b2a22e1 100755 --- a/openapi.json +++ b/openapi.json @@ -5511,7 +5511,7 @@ } }, "404": { - "description": "The requested Reader resource does not exists.", + "description": "The requested Reader resource does not exist.", "content": { "application/json": { "schema": { @@ -5578,7 +5578,7 @@ "description": "Returns an empty response if the deletion succeeded." }, "404": { - "description": "The requested Reader resource does not exists.", + "description": "The requested Reader resource does not exist.", "content": { "application/json": { "schema": { @@ -5680,7 +5680,7 @@ } }, "404": { - "description": "The requested Reader resource does not exists.", + "description": "The requested Reader resource does not exist.", "content": { "application/json": { "schema": { @@ -5850,7 +5850,8 @@ "200": { "description": "Your server returns this code if it accepts the callback.\nIf the server returns any other code, the callback will be retried up to 5 times with exponential backoff.\n" } - } + }, + "callbacks": {} } } } @@ -5912,6 +5913,7 @@ { "name": "Accept", "in": "header", + "description": "", "required": true, "schema": { "type": "string", @@ -5923,6 +5925,7 @@ { "name": "Content-Type", "in": "header", + "description": "", "required": true, "schema": { "type": "string", @@ -5934,6 +5937,7 @@ { "name": "Authorization", "in": "header", + "description": "", "required": true, "schema": { "type": "string", @@ -6015,6 +6019,7 @@ } } }, + "callbacks": {}, "security": [ { "apiKey": [] @@ -6145,6 +6150,7 @@ } } }, + "callbacks": {}, "security": [ { "apiKey": [] @@ -8322,19 +8328,29 @@ "description": "Issuing card network of the payment card used for the transaction.", "type": "string", "enum": [ + "ALELO", "AMEX", + "CONECS", "CUP", "DINERS", "DISCOVER", + "EFTPOS", "ELO", "ELV", + "GIROCARD", "HIPERCARD", + "INTERAC", "JCB", "MAESTRO", "MASTERCARD", + "PLUXEE", + "SWILE", + "TICKET", "VISA", "VISA_ELECTRON", "VISA_VPAY", + "VPAY", + "VR", "UNKNOWN" ] }, @@ -11160,6 +11176,7 @@ }, "requestBodies": { "BankAccounts": { + "description": "", "content": { "application/json": { "schema": { @@ -11170,6 +11187,7 @@ }, "CheckoutCreate": { "required": true, + "description": "", "content": { "application/json": { "schema": { @@ -11322,6 +11340,7 @@ }, "CustomerUpdate": { "required": true, + "description": "", "content": { "application/json": { "schema": { @@ -11336,6 +11355,7 @@ } }, "DoingBusinessAsLegacy": { + "description": "", "content": { "application/json": { "schema": { @@ -11345,6 +11365,7 @@ } }, "MerchantProfile": { + "description": "", "content": { "application/json": { "schema": { @@ -11354,6 +11375,7 @@ } }, "MerchantSettings": { + "description": "", "content": { "application/json": { "schema": { @@ -11363,6 +11385,7 @@ } }, "PaymentInstrument": { + "description": "", "content": { "application/json": { "schema": { @@ -11372,6 +11395,7 @@ } }, "PersonalProfile": { + "description": "", "content": { "application/json": { "schema": { @@ -11381,6 +11405,7 @@ } }, "Refund": { + "description": "", "content": { "application/json": { "schema": { From 40a7d039aa34fd26fe1588c22e7cb2f11dafad48 Mon Sep 17 00:00:00 2001 From: "sumup-bot[bot]" <241716704+sumup-bot[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 18:23:07 +0000 Subject: [PATCH 2/2] chore: generate code --- src/main/java/com/sumup/sdk/models/CardType.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/com/sumup/sdk/models/CardType.java b/src/main/java/com/sumup/sdk/models/CardType.java index 0f60dee..40159d5 100644 --- a/src/main/java/com/sumup/sdk/models/CardType.java +++ b/src/main/java/com/sumup/sdk/models/CardType.java @@ -6,19 +6,29 @@ /** Issuing card network of the payment card used for the transaction. */ public enum CardType { + ALELO("ALELO"), AMEX("AMEX"), + CONECS("CONECS"), CUP("CUP"), DINERS("DINERS"), DISCOVER("DISCOVER"), + EFTPOS("EFTPOS"), ELO("ELO"), ELV("ELV"), + GIROCARD("GIROCARD"), HIPERCARD("HIPERCARD"), + INTERAC("INTERAC"), JCB("JCB"), MAESTRO("MAESTRO"), MASTERCARD("MASTERCARD"), + PLUXEE("PLUXEE"), + SWILE("SWILE"), + TICKET("TICKET"), VISA("VISA"), VISA_ELECTRON("VISA_ELECTRON"), VISA_VPAY("VISA_VPAY"), + VPAY("VPAY"), + VR("VR"), UNKNOWN("UNKNOWN"); private final String value;