2017-10-31 05:52:52 -05:00
|
|
|
import { VideoPrivacy } from './video-privacy.enum'
|
2018-06-15 09:52:15 -05:00
|
|
|
import { VideoScheduleUpdate } from './video-schedule-update.model'
|
2017-10-31 05:52:52 -05:00
|
|
|
|
2017-07-10 12:43:21 -05:00
|
|
|
export interface VideoUpdate {
|
|
|
|
name?: string
|
|
|
|
category?: number
|
|
|
|
licence?: number
|
2018-04-23 07:39:52 -05:00
|
|
|
language?: string
|
2017-07-10 12:43:21 -05:00
|
|
|
description?: string
|
2018-02-15 07:46:26 -06:00
|
|
|
support?: string
|
2017-10-31 05:52:52 -05:00
|
|
|
privacy?: VideoPrivacy
|
2017-07-10 12:43:21 -05:00
|
|
|
tags?: string[]
|
2018-01-03 03:12:36 -06:00
|
|
|
commentsEnabled?: boolean
|
2018-10-08 07:45:22 -05:00
|
|
|
downloadEnabled?: boolean
|
2017-07-10 12:43:21 -05:00
|
|
|
nsfw?: boolean
|
2018-06-12 13:04:58 -05:00
|
|
|
waitTranscoding?: boolean
|
2018-05-11 08:10:13 -05:00
|
|
|
channelId?: number
|
2018-02-16 09:35:32 -06:00
|
|
|
thumbnailfile?: Blob
|
|
|
|
previewfile?: Blob
|
2018-06-15 09:52:15 -05:00
|
|
|
scheduleUpdate?: VideoScheduleUpdate
|
2019-01-12 07:41:45 -06:00
|
|
|
originallyPublishedAt?: Date | string
|
2017-07-10 12:43:21 -05:00
|
|
|
}
|