Transaction settlement details response body information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionSettlementDetails", "title": "TransactionSettlementDetails", "required": [ "requests", "actions" ], "type": "object", "description": "Transaction settlement details response body information.", "properties": { "requests": { "type": "array", "items": { "$ref": "#/components/schemas/Request" }, "description": "Array containing requests information." }, "actions": { "type": "array", "items": { "$ref": "#/components/schemas/Action" }, "description": "Array containing actions information." } } }