2017-10-31 06:52:52 -04:00
|
|
|
import { VideoPrivacy } from './video-privacy.enum'
|
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
export interface VideoUpdate {
|
|
|
|
name?: string
|
|
|
|
category?: number
|
|
|
|
licence?: number
|
2018-04-23 08:39:52 -04:00
|
|
|
language?: string
|
2017-07-10 13:43:21 -04:00
|
|
|
description?: string
|
2018-02-15 08:46:26 -05:00
|
|
|
support?: string
|
2017-10-31 06:52:52 -04:00
|
|
|
privacy?: VideoPrivacy
|
2017-07-10 13:43:21 -04:00
|
|
|
tags?: string[]
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled?: boolean
|
2017-07-10 13:43:21 -04:00
|
|
|
nsfw?: boolean
|
2018-02-16 10:35:32 -05:00
|
|
|
thumbnailfile?: Blob
|
|
|
|
previewfile?: Blob
|
2017-07-10 13:43:21 -04:00
|
|
|
}
|