Google Apps Script API
    Preparing search index...
    interface NotificationsCollection {
        get(
            customer: string,
            notificationId: string,
        ): GoogleAppsScript.AdminDirectory.Schema.Notification;
        list(customer: string): Notifications;
        list(customer: string, optionalArgs: object): Notifications;
        patch(
            resource: GoogleAppsScript.AdminDirectory.Schema.Notification,
            customer: string,
            notificationId: string,
        ): GoogleAppsScript.AdminDirectory.Schema.Notification;
        remove(customer: string, notificationId: string): void;
        update(
            resource: GoogleAppsScript.AdminDirectory.Schema.Notification,
            customer: string,
            notificationId: string,
        ): GoogleAppsScript.AdminDirectory.Schema.Notification;
    }
    Index

    Methods