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