Adyen · Schema

UpdatePaymentLinkRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
status string Status of the payment link. Possible values: * **expired**
View JSON Schema on GitHub

JSON Schema

adyen-updatepaymentlinkrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdatePaymentLinkRequest",
  "title": "UpdatePaymentLinkRequest",
  "properties": {
    "status": {
      "description": "Status of the payment link. Possible values:\n* **expired**",
      "enum": [
        "expired"
      ],
      "type": "string"
    }
  },
  "required": [
    "status"
  ],
  "type": "object"
}