Result set returned by getRows() and getVisibleRows().

interface IDataTableResult {
    cacheUntil: string;
    continuationToken: null | string;
    data: IDataTableRow[];
    notModified?: boolean;
    totalCount: number;
}

Properties

cacheUntil: string

ISO 8601 cache expiry timestamp.

continuationToken: null | string

Token for fetching the next page, or null if no more pages.

Row objects.

notModified?: boolean

true when data is unchanged since the last fetch (ETag match).

totalCount: number

Total matching rows across all pages.