aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/live/live-video-session.model.ts
blob: 2464e25703d8bcf3dc60176c40ac9d6981af8586 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { LiveVideoError } from './live-video-error.enum'

export interface LiveVideoSession {
  id: number

  startDate: string
  endDate: string

  error: LiveVideoError

  saveReplay: boolean
  endingProcessed: boolean

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