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

Field

import type { Field } from "https://aws-api.deno.dev/v0.3/services/redshiftdata.ts?docs=full";

A data value in a column.

interface Field {
blobValue?: Uint8Array | null;
booleanValue?: boolean | null;
doubleValue?: number | null;
isNull?: boolean | null;
longValue?: number | null;
stringValue?: string | null;
}

§Properties

§
blobValue?: Uint8Array | null
[src]

A value of the BLOB data type.

§
booleanValue?: boolean | null
[src]

A value of the Boolean data type.

§
doubleValue?: number | null
[src]

A value of the double data type.

§
isNull?: boolean | null
[src]

A value that indicates whether the data is NULL.

§
longValue?: number | null
[src]

A value of the long data type.

§
stringValue?: string | null
[src]

A value of the string data type.