Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListTableRowsResult

import type { ListTableRowsResult } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";
interface ListTableRowsResult {
columnIds: string[];
nextToken?: string | null;
rowIdsNotFound?: string[] | null;
rows: TableRow[];
workbookCursor: number;
}

§Properties

§
columnIds: string[]
[src]

The list of columns in the table whose row data is returned in the result.

§
nextToken?: string | null
[src]

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.

§
rowIdsNotFound?: string[] | null
[src]

The list of row ids included in the request that were not found in the table.

§

The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.

§
workbookCursor: number
[src]

Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.