Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.14 KB

File metadata and controls

28 lines (21 loc) · 1.14 KB

RecordingTranscriptionClip

Properties

Name Type Description Notes
speaker number Zero-based index identifying the speaker. [optional] [default to undefined]
text string The transcribed text of this clip. [optional] [default to undefined]
confidence number How confident the transcription engine was in transcribing this clip (from `0.0` to `1.0`). [optional] [default to undefined]
startTimeSeconds number The start time of this clip within the recording, in seconds. [optional] [default to undefined]
endTimeSeconds number The end time of this clip within the recording, in seconds. [optional] [default to undefined]

Example

import { RecordingTranscriptionClip } from 'bandwidth-sdk';

const instance: RecordingTranscriptionClip = {
    speaker,
    text,
    confidence,
    startTimeSeconds,
    endTimeSeconds,
};

[Back to Model list] [Back to API list] [Back to README]