WalletTransactionHistoryResponse
Response for transaction history
Properties
| Property | Type | Required | Description |
|---|---|---|---|
limit |
integer | Yes | |
offset |
integer | Yes | |
total |
integer | Yes | |
transactions |
Array<WalletTransactionResponse> | Yes |
View JSON Schema
{
"type": "object",
"description": "Response for transaction history",
"required": [
"transactions",
"total",
"limit",
"offset"
],
"properties": {
"limit": {
"type": "integer",
"format": "int64"
},
"offset": {
"type": "integer",
"format": "int64"
},
"total": {
"type": "integer",
"format": "int64"
},
"transactions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletTransactionResponse"
}
}
}
}