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