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

UpdateTableColumnPropertiesRequest

import type { UpdateTableColumnPropertiesRequest } from "https://googleapis.deno.dev/v1/docs:v1.ts";

Updates the TableColumnProperties of columns in a table.

interface UpdateTableColumnPropertiesRequest {
columnIndices?: number[];
fields?: string;
tableColumnProperties?: TableColumnProperties;
tableStartLocation?: Location;
}

§Properties

§
columnIndices?: number[]
[src]

The list of zero-based column indices whose property should be updated. If no indices are specified, all columns will be updated.

§
fields?: string
[src]

The fields that should be updated. At least one field must be specified. The root tableColumnProperties is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example to update the column width, set fields to "width".

§
tableColumnProperties?: TableColumnProperties
[src]

The table column properties to update. If the value of table_column_properties#width is less than 5 points (5/72 inch), a 400 bad request error is returned.

§
tableStartLocation?: Location
[src]

The location where the table starts in the document.