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

ListTablesResult

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

§Properties

§
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.

§
tables: Table[]
[src]

The list of tables in the workbook.

§
workbookCursor?: number | null
[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.