
Get the save replay setting when the session started to prevent inconsistent behaviour when the setting changed before the session was processed by the live ending job Display more information about the potential session replay in live modal information
20 lines
299 B
TypeScript
20 lines
299 B
TypeScript
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
|
|
}
|
|
}
|