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