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

26 lines
603 B
TypeScript
Raw Normal View History

2017-10-31 10:52:52 +00:00
import { VideoPrivacy } from './video-privacy.enum'
import { VideoScheduleUpdate } from './video-schedule-update.model'
2021-07-15 08:02:54 +00:00
export interface VideoUpdate {
name?: string
category?: number
licence?: number
2018-04-23 12:39:52 +00:00
language?: string
description?: string
support?: string
2017-10-31 10:52:52 +00:00
privacy?: VideoPrivacy
tags?: string[]
2018-01-03 09:12:36 +00:00
commentsEnabled?: boolean
downloadEnabled?: boolean
nsfw?: boolean
waitTranscoding?: boolean
2018-05-11 13:10:13 +00:00
channelId?: number
thumbnailfile?: Blob
previewfile?: Blob
scheduleUpdate?: VideoScheduleUpdate
importedFrom?: string
2019-01-12 13:41:45 +00:00
originallyPublishedAt?: Date | string
pluginData?: any
}