]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/playlist/video-playlist.model.ts
Merge branch 'feature/e2e' into develop
[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 displayName: string
12 description: string
13 privacy: VideoConstant<VideoPlaylistPrivacy>
14
15 thumbnailPath: string
16
17 videosLength: number
18
19 type: VideoConstant<VideoPlaylistType>
20
21 embedPath: string
22
23 createdAt: Date | string
24 updatedAt: Date | string
25
26 ownerAccount: AccountSummary
27 videoChannel?: VideoChannelSummary
28 }