Google Apps Script API
    Preparing search index...
    interface ProfilesCollection {
        get(
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): GoogleAppsScript.Analytics.Schema.Profile;
        insert(
            resource: GoogleAppsScript.Analytics.Schema.Profile,
            accountId: string,
            webPropertyId: string,
        ): GoogleAppsScript.Analytics.Schema.Profile;
        list(accountId: string, webPropertyId: string): Profiles;
        list(accountId: string, webPropertyId: string, optionalArgs: any): Profiles;
        patch(
            resource: GoogleAppsScript.Analytics.Schema.Profile,
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): GoogleAppsScript.Analytics.Schema.Profile;
        remove(accountId: string, webPropertyId: string, profileId: string): void;
        update(
            resource: GoogleAppsScript.Analytics.Schema.Profile,
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): GoogleAppsScript.Analytics.Schema.Profile;
    }
    Index

    Methods