Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 2.5 KB

File metadata and controls

42 lines (35 loc) · 2.5 KB

ConferenceRecordingMetadata

Properties

Name Type Description Notes
accountId string The user account associated with the call. [optional] [default to undefined]
conferenceId string The unique, Bandwidth-generated ID of the conference that was recorded [optional] [default to undefined]
name string The user-specified name of the conference that was recorded [optional] [default to undefined]
recordingId string The unique ID of this recording [optional] [default to undefined]
duration string The duration of the recording in ISO-8601 format [optional] [default to undefined]
channels number Always `1` for conference recordings; multi-channel recordings are not supported on conferences. [optional] [default to undefined]
startTime string Time the call was started, in ISO 8601 format. [optional] [default to undefined]
endTime string The time that the recording ended in ISO-8601 format [optional] [default to undefined]
fileFormat FileFormatEnum [optional] [default to undefined]
status string The current status of the process. For recording, current possible values are 'processing', 'partial', 'complete', 'deleted', and 'error'. For transcriptions, current possible values are 'none', 'processing', 'available', 'error', 'timeout', 'file-size-too-big', and 'file-size-too-small'. Additional states may be added in the future, so your application must be tolerant of unknown values. [optional] [default to undefined]
mediaUrl string The URL that can be used to download the recording. Only present if the recording is finished and may be downloaded. [optional] [default to undefined]
recordingName string A name to identify this recording. [optional] [default to undefined]

Example

import { ConferenceRecordingMetadata } from 'bandwidth-sdk';

const instance: ConferenceRecordingMetadata = {
    accountId,
    conferenceId,
    name,
    recordingId,
    duration,
    channels,
    startTime,
    endTime,
    fileFormat,
    status,
    mediaUrl,
    recordingName,
};

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