Adyen · Schema

InstallAndroidAppDetails

PaymentsFinancial ServicesFintech

Properties

Name Type Description
appId string The unique identifier of the app to be installed.
type string Type of terminal action: Install an Android app.
View JSON Schema on GitHub

JSON Schema

adyen-installandroidappdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InstallAndroidAppDetails",
  "title": "InstallAndroidAppDetails",
  "additionalProperties": false,
  "properties": {
    "appId": {
      "description": "The unique identifier of the app to be installed.",
      "type": "string"
    },
    "type": {
      "default": "InstallAndroidApp",
      "description": "Type of terminal action: Install an Android app.",
      "enum": [
        "InstallAndroidApp"
      ],
      "type": "string"
    }
  },
  "type": "object"
}