ReportLine
Object
A single data row in a Report.
Each line corresponds to one record in the result set (or one aggregation group when the report is
grouped). Use cells to access the values — one cell per column in the same order as
Report.columnsV2. The links field provides contextual navigation links for the row (for example,
a link to the order detail page).
Fields
| Field | Description | Type |
|---|---|---|
cells | All cells of the line in the same order as `Report.columnsV2`. Each `ReportCell` contains a value, type hints, and an optional localized label. | [ ReportCell ] |
labels | Localized display names for each cell's value, in the same order as `cells`. Deprecated — use `ReportCell.label` via `cells` instead. | [ String ] |
links | Contextual navigation links for this row, such as a link to the order or attendee detail page. | [ Link ] |
values | Raw string values for each column, in the same order as `cells`. Deprecated — use `ReportCell.value` via `cells` instead. | [ String ] |