Google Apps Script API
    Preparing search index...
    interface FeaturesCollection {
        get(customer: string, featureKey: string): Feature;
        insert(resource: Feature, customer: string): Feature;
        list(customer: string): Features;
        list(customer: string, optionalArgs: object): Features;
        patch(resource: Feature, customer: string, featureKey: string): Feature;
        remove(customer: string, featureKey: string): void;
        rename(resource: FeatureRename, customer: string, oldName: string): void;
        update(resource: Feature, customer: string, featureKey: string): Feature;
    }
    Index

    Methods