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

LabelFieldModification

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

A modification to a label's field.

interface LabelFieldModification {
fieldId?: string;
kind?: string;
setDateValues?: Date[];
setIntegerValues?: bigint[];
setSelectionValues?: string[];
setTextValues?: string[];
setUserValues?: string[];
unsetValues?: boolean;
}

§Properties

§
fieldId?: string
[src]

The ID of the field to be modified.

§
kind?: string
[src]

This is always drive#labelFieldModification.

§
setDateValues?: Date[]
[src]

Replaces the value of a dateString Field with these new values. The string must be in the RFC 3339 full-date format: YYYY-MM-DD.

§
setIntegerValues?: bigint[]
[src]

Replaces the value of an integer field with these new values.

§
setSelectionValues?: string[]
[src]

Replaces a selection field with these new values.

§
setTextValues?: string[]
[src]

Sets the value of a text field.

§
setUserValues?: string[]
[src]

Replaces a user field with these new values. The values must be valid email addresses.

§
unsetValues?: boolean
[src]

Unsets the values for this field.