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
33 changes: 29 additions & 4 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {}
}
}
}
Expand Down Expand Up @@ -5912,6 +5913,7 @@
{
"name": "Accept",
"in": "header",
"description": "",
"required": true,
"schema": {
"type": "string",
Expand All @@ -5923,6 +5925,7 @@
{
"name": "Content-Type",
"in": "header",
"description": "",
"required": true,
"schema": {
"type": "string",
Expand All @@ -5934,6 +5937,7 @@
{
"name": "Authorization",
"in": "header",
"description": "",
"required": true,
"schema": {
"type": "string",
Expand Down Expand Up @@ -6015,6 +6019,7 @@
}
}
},
"callbacks": {},
"security": [
{
"apiKey": []
Expand Down Expand Up @@ -6145,6 +6150,7 @@
}
}
},
"callbacks": {},
"security": [
{
"apiKey": []
Expand Down Expand Up @@ -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"
]
},
Expand Down Expand Up @@ -11160,6 +11176,7 @@
},
"requestBodies": {
"BankAccounts": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11170,6 +11187,7 @@
},
"CheckoutCreate": {
"required": true,
"description": "",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -11322,6 +11340,7 @@
},
"CustomerUpdate": {
"required": true,
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11336,6 +11355,7 @@
}
},
"DoingBusinessAsLegacy": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11345,6 +11365,7 @@
}
},
"MerchantProfile": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11354,6 +11375,7 @@
}
},
"MerchantSettings": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11363,6 +11385,7 @@
}
},
"PaymentInstrument": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11372,6 +11395,7 @@
}
},
"PersonalProfile": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand All @@ -11381,6 +11405,7 @@
}
},
"Refund": {
"description": "",
"content": {
"application/json": {
"schema": {
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/sumup/sdk/models/CardType.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading