Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the resource. |
| reference | string | The [`reference`](https://docs.adyen.com/api-explorer/#/transfers/latest/post/transfers__reqParam_reference) from the `/transfers` request. If you haven't provided any, Adyen generates a unique refere |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferData",
"title": "TransferData",
"properties": {
"id": {
"description": "The ID of the resource.",
"type": "string"
},
"reference": {
"x-addedInVersion": "4",
"description": "The [`reference`](https://docs.adyen.com/api-explorer/#/transfers/latest/post/transfers__reqParam_reference) from the `/transfers` request. If you haven't provided any, Adyen generates a unique reference.",
"type": "string"
}
},
"required": [
"reference"
],
"type": "object"
}