Google Apps Script API
    Preparing search index...

    Deprecated. This class is deprecated and should not be used in new scripts. User Properties are key-value pairs unique to a user. User Properties are scoped per user; any script running under the identity of a user can access User Properties for that user only.

    interface UserProperties {
        deleteAllProperties(): GoogleAppsScript.Properties.UserProperties;
        deleteProperty(key: string): GoogleAppsScript.Properties.UserProperties;
        getKeys(): string[];
        getProperties(): { [key: string]: string };
        getProperty(key: string): string;
        setProperties(
            properties: { [key: string]: string },
        ): GoogleAppsScript.Properties.UserProperties;
        setProperties(
            properties: { [key: string]: string },
            deleteAllOthers: boolean,
        ): GoogleAppsScript.Properties.UserProperties;
        setProperty(
            key: string,
            value: string,
        ): GoogleAppsScript.Properties.UserProperties;
    }
    Index

    Methods