WalletTransactionHistoryResponse
Response for transaction history
Properties
| Property | Type | Required | Description |
|---|---|---|---|
limit |
integer | Yes | |
next_cursor |
string,null | No | Opaque cursor for the next page when another page may exist. |
offset |
integer | Yes | |
total |
integer | Yes | |
total_is_exact |
boolean | Yes | Whether `total` is an exact count. When false, `total` is a pagination lower bound kept for older offset-based clients. |
transactions |
Array<WalletTransactionResponse> | Yes |
View JSON Schema
{
"type": "object",
"description": "Response for transaction history",
"required": [
"transactions",
"total",
"total_is_exact",
"limit",
"offset"
],
"properties": {
"limit": {
"type": "integer",
"format": "int64"
},
"next_cursor": {
"type": [
"string",
"null"
],
"description": "Opaque cursor for the next page when another page may exist."
},
"offset": {
"type": "integer",
"format": "int64"
},
"total": {
"type": "integer",
"format": "int64"
},
"total_is_exact": {
"type": "boolean",
"description": "Whether `total` is an exact count. When false, `total` is a pagination\nlower bound kept for older offset-based clients."
},
"transactions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletTransactionResponse"
}
}
}
}