Google Apps Script API
    Preparing search index...

    The properties object acts as the interface to access user, document, or script properties. The specific property type depends on which of the three methods of PropertiesService the script called: PropertiesService.getDocumentProperties(), PropertiesService.getUserProperties(), or PropertiesService.getScriptProperties(). Properties cannot be shared between scripts. For more information about property types, see the guide to the Properties service.

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

    Methods