aboutsummaryrefslogblamecommitdiffhomepage
path: root/packages/models/src/videos/live/live-video-session.model.ts
blob: 8d45bc86a7fa9f7b38244af404968136202941b1 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                               






                                   
                           
 


                          
                                                
 





                     
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
  }
}