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

AbsoluteTimeRange

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

A time range, set in seconds, between two points in the call.

interface AbsoluteTimeRange {
EndTime?: number | null;
First?: number | null;
Last?: number | null;
StartTime?: number | null;
}

§Properties

§
EndTime?: number | null
[src]

A value that indicates the end of the time range in milliseconds. To set absolute time range, you must specify a start time and an end time. For example, if you specify the following values:

  • StartTime - 10000
  • Endtime - 50000

The time range is set between 10,000 milliseconds and 50,000 milliseconds into the call.

§
First?: number | null
[src]

A time range from the beginning of the call to the value that you've specified. For example, if you specify 100000, the time range is set to the first 100,000 milliseconds of the call.

§
Last?: number | null
[src]

A time range from the value that you've specified to the end of the call. For example, if you specify 100000, the time range is set to the last 100,000 milliseconds of the call.

§
StartTime?: number | null
[src]

A value that indicates the beginning of the time range in seconds. To set absolute time range, you must specify a start time and an end time. For example, if you specify the following values:

  • StartTime - 10000
  • Endtime - 50000

The time range is set between 10,000 milliseconds and 50,000 milliseconds into the call.