Google Apps Script API
    Preparing search index...
    interface CustomMetricsCollection {
        get(
            accountId: string,
            webPropertyId: string,
            customMetricId: string,
        ): CustomMetric;
        insert(
            resource: CustomMetric,
            accountId: string,
            webPropertyId: string,
        ): CustomMetric;
        list(accountId: string, webPropertyId: string): CustomMetrics;
        list(
            accountId: string,
            webPropertyId: string,
            optionalArgs: any,
        ): CustomMetrics;
        patch(
            resource: CustomMetric,
            accountId: string,
            webPropertyId: string,
            customMetricId: string,
        ): CustomMetric;
        patch(
            resource: CustomMetric,
            accountId: string,
            webPropertyId: string,
            customMetricId: string,
            optionalArgs: any,
        ): CustomMetric;
        update(
            resource: CustomMetric,
            accountId: string,
            webPropertyId: string,
            customMetricId: string,
        ): CustomMetric;
        update(
            resource: CustomMetric,
            accountId: string,
            webPropertyId: string,
            customMetricId: string,
            optionalArgs: any,
        ): CustomMetric;
    }
    Index

    Methods