Adyen · Schema

PinChangeResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
status string The pin change status.
View JSON Schema on GitHub

JSON Schema

adyen-pinchangeresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PinChangeResponse",
  "title": "PinChangeResponse",
  "properties": {
    "status": {
      "description": "The pin change status.",
      "enum": [
        "completed",
        "pending",
        "unavailable"
      ],
      "type": "string"
    }
  },
  "required": [
    "status"
  ],
  "type": "object"
}