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

GetScreenDataResult

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

§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 query has been loaded.

§
results: {
[key: string]: ResultSet | null | undefined;
}
[src]

A map of all the rows on the screen keyed by block name.

§
workbookCursor: number
[src]

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