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

NonTalkTimeFilter

import type { NonTalkTimeFilter } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";

An object that enables you to configure your category to be applied to call analytics jobs where either the customer or agent was interrupted.

interface NonTalkTimeFilter {
AbsoluteTimeRange?: AbsoluteTimeRange | null;
Negate?: boolean | null;
RelativeTimeRange?: RelativeTimeRange | null;
Threshold?: number | null;
}

§Properties

§
AbsoluteTimeRange?: AbsoluteTimeRange | null
[src]

An object you can use to specify a time range (in milliseconds) for when no one is talking. For example, you could specify a time period between the 30,000 millisecond mark and the 45,000 millisecond mark. You could also specify the time period as the first 15,000 milliseconds or the last 15,000 milliseconds.

§
Negate?: boolean | null
[src]

Set to TRUE to look for a time period when people were talking.

§
RelativeTimeRange?: RelativeTimeRange | null
[src]

An object that allows percentages to specify the proportion of the call where there was silence. For example, you can specify the first half of the call. You can also specify the period of time between halfway through to three-quarters of the way through the call. Because the length of conversation can vary between calls, you can apply relative time ranges across all calls.

§
Threshold?: number | null
[src]

The duration of the period when neither the customer nor agent was talking.