Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetExperimentResultsResponse

import type { GetExperimentResultsResponse } from "https://aws-api.deno.dev/v0.4/services/evidently.ts?docs=full";
interface GetExperimentResultsResponse {
details?: string | null;
reports?: ExperimentReport[] | null;
resultsData?: ExperimentResultsData[] | null;
timestamps?: (Date | number)[] | null;
}

§Properties

§
details?: string | null
[src]

If the experiment doesn't yet have enough events to provide valid results, this field is returned with the message Not enough events to generate results. If there are enough events to provide valid results, this field is not returned.

§
reports?: ExperimentReport[] | null
[src]

An array of structures that include the reports that you requested.

§
resultsData?: ExperimentResultsData[] | null
[src]

An array of structures that include experiment results including metric names and values.

§
timestamps?: (Date | number)[] | null
[src]

The timestamps of each result returned.