Google Apps Script API
    Preparing search index...

    Representation of label and label fields.

    interface Label {
        fields?: Record<string, LabelField>;
        id?: string;
        kind?: string;
        revisionId?: string;
    }
    Index

    Properties

    fields?: Record<string, LabelField>

    A map of the fields on the label, keyed by the field's ID.

    id?: string

    The ID of the label.

    kind?: string

    This is always drive#label

    revisionId?: string

    The revision ID of the label.