Represents a Universal Command Protocol (UCP) response message. It encapsulates all fields needed to report the result of a blockchain operation, including command, version, external ID, status, timestamp, success indicator, result data, and additional info such as ledger, statement, envelope, and processing duration. This structure is used to communicate the outcome and metadata of requests processed by the blockchain network.
[
{
"command": "string",
"version": 0,
"xid": "string",
"status": 0,
"timestamp": "string",
"success": true,
"result": "string",
"tail": {
"ledger": "string",
"statement": "string",
"envelope": "string",
"duration": 0
}
}
]