WalletTransferListResponse
Properties
| Property | Type | Required | Description |
|---|---|---|---|
items |
Array<WalletTransferListItem> | Yes | |
next_cursor |
string,null | No |
View JSON Schema
{
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletTransferListItem"
}
},
"next_cursor": {
"type": [
"string",
"null"
]
}
}
}