Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TransactionsV4Response",
"type": "object",
"properties": {
"total": {
"type": "number"
},
"limit": {
"type": "number"
},
"skip": {
"type": "number"
},
"results": {
"type": "array",
"items": {
"type": "string"
}
},
"resumeToken": {
"type": "string",
"description": "Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results."
}
},
"required": [
"total",
"limit",
"skip",
"results"
]
}