Google Apps Script API
    Preparing search index...
    interface ExperimentsCollection {
        get(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            experimentId: string,
        ): Experiment;
        insert(
            resource: Experiment,
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): Experiment;
        list(
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): Experiments;
        list(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            optionalArgs: any,
        ): Experiments;
        patch(
            resource: Experiment,
            accountId: string,
            webPropertyId: string,
            profileId: string,
            experimentId: string,
        ): Experiment;
        remove(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            experimentId: string,
        ): void;
        update(
            resource: Experiment,
            accountId: string,
            webPropertyId: string,
            profileId: string,
            experimentId: string,
        ): Experiment;
    }
    Index

    Methods