BooksBalanceSheetDto
A balance sheet over a client's own books, as at one date.
Properties
| Name | Type | Description |
|---|---|---|
| asAt | string | The date the figures are stated as at — the date the platform ran the report to, which is |
The date the figures are stated as at — the date the platform ran the report to, which is | ||
| currency | string | ISO currency code the figures are in, where the platform reports one. |
ISO currency code the figures are in, where the platform reports one. | ||
| sections | array of BooksReportSectionDto | The report's sections in the order the platform returned them, deliberately not normalised |
The report's sections in the order the platform returned them, deliberately not normalised | ||
JSON Example
{
"asAt": "2024-01-01",
"currency": "string",
"sections": [
{
"title": "...",
"lines": "..."
}
]
}