]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/live/live-video-session.model.ts
Clearer live session
[github/Chocobozzz/PeerTube.git] / shared / models / videos / live / live-video-session.model.ts
CommitLineData
26e3e98f
C
1import { LiveVideoError } from './live-video-error.enum'
2
3export interface LiveVideoSession {
4 id: number
5
6 startDate: string
7 endDate: string
8
9 error: LiveVideoError
10
c8fa571f
C
11 saveReplay: boolean
12 endingProcessed: boolean
13
26e3e98f
C
14 replayVideo: {
15 id: number
16 uuid: string
17 shortUUID: string
18 }
19}