]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-update.model.ts
fc0df681085f6df80e316a6c81697dd59acc3942
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
1 import { VideoPrivacy } from './video-privacy.enum'
2
3 export interface VideoUpdate {
4 name?: string
5 category?: number
6 licence?: number
7 language?: string
8 description?: string
9 support?: string
10 privacy?: VideoPrivacy
11 tags?: string[]
12 commentsEnabled?: boolean
13 nsfw?: boolean
14 waitTranscoding?: boolean
15 channelId?: number
16 thumbnailfile?: Blob
17 previewfile?: Blob
18 scheduleUpdate?: {
19 updateAt: Date
20 privacy?: VideoPrivacy
21 }
22 }