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

ListTableColumnsResult

import type { ListTableColumnsResult } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";
interface ListTableColumnsResult {
nextToken?: string | null;
tableColumns: TableColumn[];
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.

§
tableColumns: TableColumn[]
[src]

The list of columns in the table.

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