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