Skip to content

Commit 4040618

Browse files
author
appscisumup
committed
chore: synced local 'openapi.json' with remote 'specs/openapi.json'
1 parent 22b5a59 commit 4040618

1 file changed

Lines changed: 34 additions & 1 deletion

File tree

openapi.json

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7606,6 +7606,7 @@
76067606
"apple pay",
76077607
"google pay",
76087608
"paypal",
7609+
"twint",
76097610
"na"
76107611
],
76117612
"title": "Entry Mode"
@@ -7828,7 +7829,14 @@
78287829
"description": "List of hyperlinks for accessing related resources.",
78297830
"type": "array",
78307831
"items": {
7831-
"$ref": "#/components/schemas/Link"
7832+
"oneOf": [
7833+
{
7834+
"$ref": "#/components/schemas/Link"
7835+
},
7836+
{
7837+
"$ref": "#/components/schemas/LinkRefund"
7838+
}
7839+
]
78327840
}
78337841
},
78347842
"events": {
@@ -7930,6 +7938,30 @@
79307938
"minimum": 0,
79317939
"title": "Latitude"
79327940
},
7941+
"LinkRefund": {
7942+
"description": "Hypermedia link including allowed minimum and maximum refund amounts.",
7943+
"allOf": [
7944+
{
7945+
"$ref": "#/components/schemas/Link"
7946+
},
7947+
{
7948+
"type": "object",
7949+
"properties": {
7950+
"min_amount": {
7951+
"description": "Minimum allowed amount for the refund.",
7952+
"type": "number",
7953+
"format": "float"
7954+
},
7955+
"max_amount": {
7956+
"description": "Maximum allowed amount for the refund.",
7957+
"type": "number",
7958+
"format": "float"
7959+
}
7960+
}
7961+
}
7962+
],
7963+
"title": "Link Refund"
7964+
},
79337965
"Lon": {
79347966
"description": "Longitude value from the coordinates of the payment location (as received from the payment terminal reader).",
79357967
"type": "number",
@@ -10382,6 +10414,7 @@
1038210414
"APPLE_PAY",
1038310415
"GOOGLE_PAY",
1038410416
"PAYPAL",
10417+
"TWINT",
1038510418
"NONE",
1038610419
"CHIP",
1038710420
"MANUAL_ENTRY",

0 commit comments

Comments
 (0)