PeerTube/shared/models/videos/video-create.model.ts

25 lines
576 B
TypeScript
Raw Normal View History

2017-10-31 05:52:52 -05:00
import { VideoPrivacy } from './video-privacy.enum'
import { VideoScheduleUpdate } from './video-schedule-update.model'
2017-10-31 05:52:52 -05:00
export interface VideoCreate {
2020-11-03 08:33:30 -06:00
name: string
channelId: number
2017-12-07 10:22:44 -06:00
category?: number
licence?: number
2018-04-23 07:39:52 -05:00
language?: string
2017-12-07 10:22:44 -06:00
description?: string
support?: string
nsfw?: boolean
waitTranscoding?: boolean
2017-12-07 10:22:44 -06:00
tags?: string[]
2018-01-03 03:12:36 -06:00
commentsEnabled?: boolean
downloadEnabled?: boolean
2017-10-31 05:52:52 -05:00
privacy: VideoPrivacy
scheduleUpdate?: VideoScheduleUpdate
originallyPublishedAt?: Date | string
2020-10-30 09:09:00 -05:00
2020-11-02 08:43:44 -06:00
thumbnailfile?: Blob | string
previewfile?: Blob | string
}