Google Apps Script API
    Preparing search index...
    interface CalendarsCollection {
        get(customer: string, calendarResourceId: string): CalendarResource;
        insert(resource: CalendarResource, customer: string): CalendarResource;
        list(customer: string): CalendarResources;
        list(customer: string, optionalArgs: object): CalendarResources;
        patch(
            resource: CalendarResource,
            customer: string,
            calendarResourceId: string,
        ): CalendarResource;
        remove(customer: string, calendarResourceId: string): void;
        update(
            resource: CalendarResource,
            customer: string,
            calendarResourceId: string,
        ): CalendarResource;
    }
    Index

    Methods