Google Apps Script API
    Preparing search index...
    interface PropertiesCollection {
        get(fileId: string, propertyKey: string): Property;
        get(
            fileId: string,
            propertyKey: string,
            optionalArgs: Record<string, any>,
        ): Property;
        insert(resource: Property, fileId: string): Property;
        list(fileId: string): PropertyList;
        patch(resource: Property, fileId: string, propertyKey: string): Property;
        patch(
            resource: Property,
            fileId: string,
            propertyKey: string,
            optionalArgs: Record<string, any>,
        ): Property;
        remove(fileId: string, propertyKey: string): void;
        remove(
            fileId: string,
            propertyKey: string,
            optionalArgs: Record<string, any>,
        ): void;
        update(resource: Property, fileId: string, propertyKey: string): Property;
        update(
            resource: Property,
            fileId: string,
            propertyKey: string,
            optionalArgs: Record<string, any>,
        ): Property;
    }
    Index

    Methods