aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/videos/live/live-video-session.model.ts
blob: 8d45bc86a7fa9f7b38244af404968136202941b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { VideoPrivacyType } from '../video-privacy.enum.js'
import { LiveVideoErrorType } from './live-video-error.enum.js'

export interface LiveVideoSession {
  id: number

  startDate: string
  endDate: string

  error: LiveVideoErrorType

  saveReplay: boolean
  endingProcessed: boolean

  replaySettings?: { privacy: VideoPrivacyType }

  replayVideo: {
    id: number
    uuid: string
    shortUUID: string
  }
}