spec release

This commit is contained in:
Adyen Automation
2024-06-07 08:56:56 +02:00
parent f3816bdf2f
commit af96aa209f
4 changed files with 57 additions and 6 deletions

View File

@@ -15238,7 +15238,7 @@
"type" : "string"
},
"errorCode" : {
"description" : "The error code of the app. It exists if the status is error or invalid.",
"description" : "The error code of the Android app with the `status` of either **error** or **invalid**.",
"type" : "string"
},
"id" : {

View File

@@ -15635,9 +15635,20 @@
"type" : "string"
},
"errorCode" : {
"description" : "The error code of the app. It exists if the status is error or invalid.",
"deprecated" : true,
"x-deprecatedInVersion" : "3",
"x-deprecatedMessage" : "Use `errors` instead.",
"description" : "The error code of the Android app with the `status` of either **error** or **invalid**.",
"type" : "string"
},
"errors" : {
"x-addedInVersion" : "3",
"description" : "The list of errors of the Android app.",
"items" : {
"$ref" : "#/components/schemas/AndroidAppError"
},
"type" : "array"
},
"id" : {
"description" : "The unique identifier of the app.",
"type" : "string"
@@ -15670,6 +15681,23 @@
],
"type" : "object"
},
"AndroidAppError" : {
"additionalProperties" : false,
"properties" : {
"errorCode" : {
"description" : "The error code of the Android app with the `status` of either **error** or **invalid**.",
"type" : "string"
},
"terminalModels" : {
"description" : "The list of payment terminal models to which the returned `errorCode` applies.",
"items" : {
"type" : "string"
},
"type" : "array"
}
},
"type" : "object"
},
"AndroidAppsResponse" : {
"additionalProperties" : false,
"properties" : {

View File

@@ -10003,8 +10003,8 @@ components:
description is not shown on the terminal.
type: string
errorCode:
description: The error code of the app. It exists if the status is error
or invalid.
description: The error code of the Android app with the `status` of either
**error** or **invalid**.
type: string
id:
description: The unique identifier of the app.

View File

@@ -10257,9 +10257,18 @@ components:
description is not shown on the terminal.
type: string
errorCode:
description: The error code of the app. It exists if the status is error
or invalid.
deprecated: true
x-deprecatedInVersion: '3'
x-deprecatedMessage: Use `errors` instead.
description: The error code of the Android app with the `status` of either
**error** or **invalid**.
type: string
errors:
x-addedInVersion: '3'
description: The list of errors of the Android app.
items:
$ref: '#/components/schemas/AndroidAppError'
type: array
id:
description: The unique identifier of the app.
type: string
@@ -10289,6 +10298,20 @@ components:
- id
- status
type: object
AndroidAppError:
additionalProperties: false
properties:
errorCode:
description: The error code of the Android app with the `status` of either
**error** or **invalid**.
type: string
terminalModels:
description: The list of payment terminal models to which the returned `errorCode`
applies.
items:
type: string
type: array
type: object
AndroidAppsResponse:
additionalProperties: false
properties: