Google Apps Script API
    Preparing search index...
    interface LabelsCollection {
        create(
            resource: GoogleAppsScript.Gmail.Schema.Label,
            userId: string,
        ): GoogleAppsScript.Gmail.Schema.Label;
        get(userId: string, id: string): GoogleAppsScript.Gmail.Schema.Label;
        list(userId: string): ListLabelsResponse;
        patch(
            resource: GoogleAppsScript.Gmail.Schema.Label,
            userId: string,
            id: string,
        ): GoogleAppsScript.Gmail.Schema.Label;
        remove(userId: string, id: string): void;
        update(
            resource: GoogleAppsScript.Gmail.Schema.Label,
            userId: string,
            id: string,
        ): GoogleAppsScript.Gmail.Schema.Label;
    }
    Index

    Methods