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

CellInput

import type { CellInput } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";

CellInput object contains the data needed to create or update cells in a table.

Note: CellInput object has only a facts field or a fact field, but not both. A 400 bad request will be thrown if both fact and facts field are present.

interface CellInput {
fact?: string | null;
facts?: string[] | null;
}

§Properties

§
fact?: string | null
[src]

Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.

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

A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.