]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/playlist/video-playlist.model.ts
Fix big play button
[github/Chocobozzz/PeerTube.git] / shared / models / videos / playlist / video-playlist.model.ts
1 import { AccountSummary } from '../../actors/index'
2 import { VideoChannelSummary, VideoConstant } from '..'
3 import { VideoPlaylistPrivacy } from './video-playlist-privacy.model'
4 import { VideoPlaylistType } from './video-playlist-type.model'
5
6 export interface VideoPlaylist {
7 id: number
8 uuid: string
9 isLocal: boolean
10
11 url: string
12
13 displayName: string
14 description: string
15 privacy: VideoConstant<VideoPlaylistPrivacy>
16
17 thumbnailPath: string
18 thumbnailUrl?: string
19
20 videosLength: number
21
22 type: VideoConstant<VideoPlaylistType>
23
24 embedPath: string
25 embedUrl?: string
26
27 createdAt: Date | string
28 updatedAt: Date | string
29
30 ownerAccount: AccountSummary
31 videoChannel?: VideoChannelSummary
32 }