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

LabelField

import type { LabelField } from "https://googleapis.deno.dev/v1/drive:v3.ts";

Representation of field, which is a typed key-value pair.

interface LabelField {
dateString?: Date[];
id?: string;
integer?: bigint[];
kind?: string;
selection?: string[];
text?: string[];
user?: User[];
valueType?: string;
}

§Properties

§
dateString?: Date[]
[src]

Only present if valueType is dateString. RFC 3339 formatted date: YYYY-MM-DD.

§
id?: string
[src]

The identifier of this label field.

§
integer?: bigint[]
[src]

Only present if valueType is integer.

§
kind?: string
[src]

This is always drive#labelField.

§
selection?: string[]
[src]

Only present if valueType is selection

§
text?: string[]
[src]

Only present if valueType is text.

§
user?: User[]
[src]

Only present if valueType is user.

§
valueType?: string
[src]

The field type. While new values may be supported in the future, the following are currently allowed: * dateString * integer * selection * text * user