Adyen · Schema

StoredValueResponse

It conveys Information related to the Stored Value transaction processed by the POI System. Content of the Stored Value Response message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
Response object
SaleData object
POIData object
StoredValueResult array
PaymentReceipt array
View JSON Schema on GitHub

JSON Schema

adyen-storedvalueresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoredValueResponse",
  "title": "StoredValueResponse",
  "type": "object",
  "description": "It conveys Information related to the Stored Value transaction processed by the POI System. Content of the Stored Value Response message.",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "POIData": {
      "$ref": "#/components/schemas/POIData"
    },
    "StoredValueResult": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StoredValueResult"
      }
    },
    "PaymentReceipt": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentReceipt"
      }
    }
  },
  "required": [
    "Response",
    "SaleData",
    "POIData"
  ]
}