]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-streaming-playlist.model.ts
Playlist server API
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-streaming-playlist.model.ts
1 import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
2
3 export class VideoStreamingPlaylist {
4 id: number
5 type: VideoStreamingPlaylistType
6 playlistUrl: string
7 segmentsSha256Url: string
8
9 redundancies: {
10 baseUrl: string
11 }[]
12 }