2019-02-26 04:55:40 -05:00
|
|
|
import { AccountSummary } from '../../actors/index'
|
|
|
|
import { VideoChannelSummary, VideoConstant } from '..'
|
|
|
|
import { VideoPlaylistPrivacy } from './video-playlist-privacy.model'
|
2019-03-05 04:58:44 -05:00
|
|
|
import { VideoPlaylistType } from './video-playlist-type.model'
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
export interface VideoPlaylist {
|
|
|
|
id: number
|
|
|
|
uuid: string
|
|
|
|
isLocal: boolean
|
|
|
|
|
|
|
|
displayName: string
|
|
|
|
description: string
|
|
|
|
privacy: VideoConstant<VideoPlaylistPrivacy>
|
|
|
|
|
|
|
|
thumbnailPath: string
|
|
|
|
|
|
|
|
videosLength: number
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
type: VideoConstant<VideoPlaylistType>
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
createdAt: Date | string
|
|
|
|
updatedAt: Date | string
|
|
|
|
|
2019-03-06 09:36:44 -05:00
|
|
|
ownerAccount: AccountSummary
|
2019-02-26 04:55:40 -05:00
|
|
|
videoChannel?: VideoChannelSummary
|
|
|
|
}
|