Merge from upstream
[oweals/peertube.git] / shared / models / videos / video-create.model.ts
1 import { VideoPrivacy } from './video-privacy.enum'
2 import { VideoScheduleUpdate } from './video-schedule-update.model'
3
4 export interface VideoCreate {
5   category?: number
6   licence?: number
7   language?: string
8   description?: string
9   support?: string
10   channelId: number
11   nsfw?: boolean
12   waitTranscoding?: boolean
13   name: string
14   tags?: string[]
15   commentsEnabled?: boolean
16   privacy: VideoPrivacy
17   scheduleUpdate?: VideoScheduleUpdate
18 }