Google Apps Script API
    Preparing search index...
    interface CalendarListCollection {
        get(calendarId: string): CalendarListEntry;
        get(
            calendarId: string,
            optionalArgs: object,
            headers: object,
        ): CalendarListEntry;
        insert(resource: CalendarListEntry): CalendarListEntry;
        insert(
            resource: CalendarListEntry,
            optionalArgs: object,
        ): CalendarListEntry;
        insert(
            resource: CalendarListEntry,
            optionalArgs: object,
            headers: object,
        ): CalendarListEntry;
        list(): CalendarList;
        list(optionalArgs: object): CalendarList;
        list(optionalArgs: object, headers: object): CalendarList;
        patch(resource: CalendarListEntry, calendarId: string): CalendarListEntry;
        patch(
            resource: CalendarListEntry,
            calendarId: string,
            optionalArgs: object,
        ): CalendarListEntry;
        patch(
            resource: CalendarListEntry,
            calendarId: string,
            optionalArgs: object,
            headers: object,
        ): CalendarListEntry;
        remove(calendarId: string): void;
        remove(calendarId: string, optionalArgs: object, headers: object): void;
        update(resource: CalendarListEntry, calendarId: string): CalendarListEntry;
        update(
            resource: CalendarListEntry,
            calendarId: string,
            optionalArgs: object,
        ): CalendarListEntry;
        update(
            resource: CalendarListEntry,
            calendarId: string,
            optionalArgs: object,
            headers: object,
        ): CalendarListEntry;
        watch(
            resource: GoogleAppsScript.Calendar.Schema.Channel,
        ): GoogleAppsScript.Calendar.Schema.Channel;
        watch(
            resource: GoogleAppsScript.Calendar.Schema.Channel,
            optionalArgs: object,
        ): GoogleAppsScript.Calendar.Schema.Channel;
        watch(
            resource: GoogleAppsScript.Calendar.Schema.Channel,
            optionalArgs: object,
            headers: object,
        ): GoogleAppsScript.Calendar.Schema.Channel;
    }
    Index

    Methods