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

SpannerColumn

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

Spanner column.

interface SpannerColumn {
column?: string;
dataType?: string;
isPrimaryKey?: boolean;
ordinalPosition?: bigint;
}

§Properties

§
column?: string
[src]

Required. The column name.

§
dataType?: string
[src]

Optional. Spanner data type.

§
isPrimaryKey?: boolean
[src]

Optional. Whether or not the column is a primary key.

§
ordinalPosition?: bigint
[src]

Optional. The ordinal position of the column in the table.