WalletTransferListItem
Properties
| Property | Type | Required | Description |
amount_cents |
integer |
Yes |
|
amount_usd |
string |
Yes |
|
counterparty |
string |
Yes |
|
counterparty_user_id |
string,null |
No |
|
created_at |
string |
Yes |
|
direction |
string |
Yes |
|
expires_at |
string,null |
No |
|
id |
string |
Yes |
|
kind |
string |
Yes |
|
memo |
string,null |
No |
|
status |
string |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"id",
"kind",
"direction",
"status",
"counterparty",
"amount_cents",
"amount_usd",
"created_at"
],
"properties": {
"amount_cents": {
"type": "integer",
"format": "int64"
},
"amount_usd": {
"type": "string"
},
"counterparty": {
"type": "string"
},
"counterparty_user_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"direction": {
"type": "string"
},
"expires_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"id": {
"type": "string",
"format": "uuid"
},
"kind": {
"type": "string"
},
"memo": {
"type": [
"string",
"null"
]
},
"status": {
"type": "string"
}
}
}