Adyen · Schema

UninstallAndroidAppDetails

PaymentsFinancial ServicesFintech

Properties

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

JSON Schema

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