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