Adyen · Schema
StoredValueResult
For each stored value card loaded or reloaded, in the StoredValue response message. Result of loading/reloading a stored value card..
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| StoredValueTransactionType | object | |
| ProductCode | integer | Copy. |
| EanUpc | integer | Copy. |
| ItemAmount | number | Total amount of the item line. |
| Currency | string | Copy. |
| StoredValueAccountStatus | object | |
| HostTransactionID | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-stored-value-result-schema.json",
"title": "StoredValueResult",
"description": "For each stored value card loaded or reloaded, in the StoredValue response message. Result of loading/reloading a stored value card..",
"type": "object",
"properties": {
"StoredValueTransactionType": {
"$ref": "#/components/schemas/StoredValueTransactionType"
},
"ProductCode": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"description": "Copy."
},
"EanUpc": {
"type": "integer",
"description": "Copy."
},
"ItemAmount": {
"type": "number",
"maximum": 99999999.999999,
"minimum": 0,
"description": "Total amount of the item line."
},
"Currency": {
"type": "string",
"pattern": "^[A-Z]{3,3}$",
"description": "Copy."
},
"StoredValueAccountStatus": {
"$ref": "#/components/schemas/StoredValueAccountStatus"
},
"HostTransactionID": {
"$ref": "#/components/schemas/TransactionIDType"
}
},
"required": [
"StoredValueTransactionType"
]
}