blob: 732d508d1f23b88f274a74021930095c0fde9088 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import { VideoPrivacy } from './video-privacy.enum'
import { VideoScheduleUpdate } from './video-schedule-update.model'
export interface VideoCreate {
name: string
channelId: number
category?: number
licence?: number
language?: string
description?: string
support?: string
nsfw?: boolean
waitTranscoding?: boolean
tags?: string[]
commentsEnabled?: boolean
downloadEnabled?: boolean
privacy: VideoPrivacy
scheduleUpdate?: VideoScheduleUpdate
originallyPublishedAt?: Date | string
thumbnailfile?: Blob | string
previewfile?: Blob | string
}
|