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

GoogleCloudDialogflowCxV3ExperimentResultMetric

import type { GoogleCloudDialogflowCxV3ExperimentResultMetric } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Metric and corresponding confidence intervals.

interface GoogleCloudDialogflowCxV3ExperimentResultMetric {
count?: number;
countType?:
| "COUNT_TYPE_UNSPECIFIED"
| "TOTAL_NO_MATCH_COUNT"
| "TOTAL_TURN_COUNT"
| "AVERAGE_TURN_COUNT";
ratio?: number;
type?:
| "METRIC_UNSPECIFIED"
| "CONTAINED_SESSION_NO_CALLBACK_RATE"
| "LIVE_AGENT_HANDOFF_RATE"
| "CALLBACK_SESSION_RATE"
| "ABANDONED_SESSION_RATE"
| "SESSION_END_RATE";
}

§Properties

§

The probability that the treatment is better than all other treatments in the experiment

§
count?: number
[src]

Count value of a metric.

§
countType?: "COUNT_TYPE_UNSPECIFIED" | "TOTAL_NO_MATCH_COUNT" | "TOTAL_TURN_COUNT" | "AVERAGE_TURN_COUNT"
[src]

Count-based metric type. Only one of type or count_type is specified in each Metric.

§
ratio?: number
[src]

Ratio value of a metric.

§
type?: "METRIC_UNSPECIFIED" | "CONTAINED_SESSION_NO_CALLBACK_RATE" | "LIVE_AGENT_HANDOFF_RATE" | "CALLBACK_SESSION_RATE" | "ABANDONED_SESSION_RATE" | "SESSION_END_RATE"
[src]

Ratio-based metric type. Only one of type or count_type is specified in each Metric.