Google Apps Script API
    Preparing search index...

    Deprecated. This class is deprecated and should not be used in new scripts. Script Properties are key-value pairs stored by a script in a persistent store. Script Properties are scoped per script, regardless of which user runs the script.

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

    Methods