Google Apps Script API
    Preparing search index...
    interface SettingsCollection {
        Delegates: DelegatesCollection;
        Filters: GoogleAppsScript.Gmail.Collection.Users.Settings.FiltersCollection;
        ForwardingAddresses: ForwardingAddressesCollection;
        SendAs: SendAsCollection;
        getAutoForwarding(userId: string): AutoForwarding;
        getImap(userId: string): ImapSettings;
        getPop(userId: string): PopSettings;
        getVacation(userId: string): VacationSettings;
        updateAutoForwarding(
            resource: AutoForwarding,
            userId: string,
        ): AutoForwarding;
        updateImap(resource: ImapSettings, userId: string): ImapSettings;
        updatePop(resource: PopSettings, userId: string): PopSettings;
        updateVacation(
            resource: VacationSettings,
            userId: string,
        ): VacationSettings;
    }
    Index

    Properties

    ForwardingAddresses: ForwardingAddressesCollection

    Methods