Google Apps Script API
    Preparing search index...

    A modification to a label's field.

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

    Properties

    fieldId: string

    The ID of the field to be modified.

    kind: string

    This is always drive#labelFieldModification.

    setDateValues: string[]

    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: string[]

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

    setSelectionValues: string[]

    Replaces a selection field with these new values.

    setTextValues: string[]

    Sets the value of a text field.

    setUserValues: string[]

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

    unsetValues: boolean

    Unsets the values for this field.