1
0
Fork 0
peertube/shared/models/videos/video-create.model.ts

19 lines
444 B
TypeScript
Raw Normal View History

2017-10-31 06:52:52 -04:00
import { VideoPrivacy } from './video-privacy.enum'
import { VideoScheduleUpdate } from './video-schedule-update.model'
2017-10-31 06:52:52 -04:00
export interface VideoCreate {
2017-12-07 11:22:44 -05:00
category?: number
licence?: number
2018-04-23 08:39:52 -04:00
language?: string
2017-12-07 11:22:44 -05:00
description?: string
support?: string
2017-10-24 13:41:09 -04:00
channelId: number
nsfw?: boolean
waitTranscoding?: boolean
name: string
2017-12-07 11:22:44 -05:00
tags?: string[]
2018-01-03 04:12:36 -05:00
commentsEnabled?: boolean
2017-10-31 06:52:52 -04:00
privacy: VideoPrivacy
scheduleUpdate?: VideoScheduleUpdate
}