BooksReportLineDto
One line of a report.
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The line's label — an account name, or the name of a subtotal. |
The line's label — an account name, or the name of a subtotal. | ||
| nominalCode | string | The account's nominal code, where the platform puts one on the line. Null on platforms whose |
The account's nominal code, where the platform puts one on the line. Null on platforms whose | ||
| amount | number | The line's value for the period. |
The line's value for the period. | ||
| isTotal | boolean | Whether this line is a total or subtotal rather than an account. Totals must not be summed |
Whether this line is a total or subtotal rather than an account. Totals must not be summed | ||
| isArchived | boolean | Whether the account behind this line is archived in the books — Xero's "archived", |
Whether the account behind this line is archived in the books — Xero's "archived", | ||
JSON Example
{
"name": "string",
"nominalCode": "string",
"amount": 0,
"isTotal": false,
"isArchived": false
}