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

GoogleCloudDatacatalogV1TagField

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

Contains the value and additional information on a field within a Tag.

interface GoogleCloudDatacatalogV1TagField {
boolValue?: boolean;
readonly displayName?: string;
doubleValue?: number;
readonly order?: number;
richtextValue?: string;
stringValue?: string;
timestampValue?: Date;
}

§Properties

§
boolValue?: boolean
[src]

The value of a tag field with a boolean type.

§
readonly displayName?: string
[src]

Output only. The display name of this field.

§
doubleValue?: number
[src]

The value of a tag field with a double type.

§

The value of a tag field with an enum type. This value must be one of the allowed values listed in this enum.

§
readonly order?: number
[src]

Output only. The order of this field with respect to other fields in this tag. Can be set by Tag. For example, a higher value can indicate a more important field. The value can be negative. Multiple fields can have the same order, and field orders within a tag don't have to be sequential.

§
richtextValue?: string
[src]

The value of a tag field with a rich text type. The maximum length is 10 MiB as this value holds HTML descriptions including encoded images. The maximum length of the text without images is 100 KiB.

§
stringValue?: string
[src]

The value of a tag field with a string type. The maximum length is 2000 UTF-8 characters.

§
timestampValue?: Date
[src]

The value of a tag field with a timestamp type.