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

UpdateRowData

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

Data needed to create a single row in a table as part of the BatchCreateTableRows request.

interface UpdateRowData {
cellsToUpdate: {
[key: string]: CellInput | null | undefined;
}
;
rowId: string;
}

§Properties

§
cellsToUpdate: {
[key: string]: CellInput | null | undefined;
}
[src]

A map representing the cells to update in the given row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

§
rowId: string
[src]

The id of the row that needs to be updated.