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

TableColumn

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

An object that contains attributes about a single column in a table

interface TableColumn {
format?: Format | null;
tableColumnId?: string | null;
tableColumnName?: string | null;
}

§Properties

§
format?: Format | null
[src]

The column level format that is applied in the table. An empty value in this field means that the column format is the default value 'AUTO'.

§
tableColumnId?: string | null
[src]

The id of the column in the table.

§
tableColumnName?: string | null
[src]

The name of the column in the table.