Google Apps Script API
    Preparing search index...

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

    interface LabelField {
        dateString?: string[];
        id?: string;
        integer?: string[];
        kind?: string;
        selection?: string[];
        text?: string[];
        user?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.User[];
        valueType?: string;
    }
    Index

    Properties

    dateString?: string[]

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

    id?: string

    The identifier of this label field.

    integer?: string[]

    Only present if valueType is integer.

    kind?: string

    This is always drive#labelField.

    selection?: string[]

    Only present if valueType is selection

    text?: string[]

    Only present if valueType is text.

    Only present if valueType is user.

    valueType?: string

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