RecordingV1 Data Type

Model class for recording data contained within an engagement.

Properties
name data type description
uri string URI of where the recording can be downloaded.
user string Email address of the user in the recording.
created string Date the recording was created (in unix timestamp format).
duration number Duration of the recording, in seconds.
size number Size of the recording, in Bytes.
contents string Contents of the recording: AUDIO, AUDIOVIDEO, VIDEO.

Example

{
  "uri" : "...",
  "user" : "...",
  "created" : "...",
  "duration" : 12345,
  "size" : 12345,
  "contents" : "..."
}