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