Google Apps Script API
    Preparing search index...
    interface CustomDimensionsCollection {
        get(
            accountId: string,
            webPropertyId: string,
            customDimensionId: string,
        ): GoogleAppsScript.Analytics.Schema.CustomDimension;
        insert(
            resource: GoogleAppsScript.Analytics.Schema.CustomDimension,
            accountId: string,
            webPropertyId: string,
        ): GoogleAppsScript.Analytics.Schema.CustomDimension;
        list(accountId: string, webPropertyId: string): CustomDimensions;
        list(
            accountId: string,
            webPropertyId: string,
            optionalArgs: any,
        ): CustomDimensions;
        patch(
            resource: GoogleAppsScript.Analytics.Schema.CustomDimension,
            accountId: string,
            webPropertyId: string,
            customDimensionId: string,
        ): GoogleAppsScript.Analytics.Schema.CustomDimension;
        patch(
            resource: GoogleAppsScript.Analytics.Schema.CustomDimension,
            accountId: string,
            webPropertyId: string,
            customDimensionId: string,
            optionalArgs: any,
        ): GoogleAppsScript.Analytics.Schema.CustomDimension;
        update(
            resource: GoogleAppsScript.Analytics.Schema.CustomDimension,
            accountId: string,
            webPropertyId: string,
            customDimensionId: string,
        ): GoogleAppsScript.Analytics.Schema.CustomDimension;
        update(
            resource: GoogleAppsScript.Analytics.Schema.CustomDimension,
            accountId: string,
            webPropertyId: string,
            customDimensionId: string,
            optionalArgs: any,
        ): GoogleAppsScript.Analytics.Schema.CustomDimension;
    }
    Index

    Methods