]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/video-torrent-object.ts
99e7157b8c1cd3324c9007975e0d038a8cb32186
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-torrent-object.ts
1 import {
2 ActivityIconObject,
3 ActivityIdentifierObject,
4 ActivityTagObject,
5 ActivityUrlObject
6 } from './common-objects'
7
8 export interface VideoTorrentObject {
9 type: 'Video'
10 id: string
11 name: string
12 duration: string
13 uuid: string
14 tag: ActivityTagObject[]
15 category: ActivityIdentifierObject
16 licence: ActivityIdentifierObject
17 language: ActivityIdentifierObject
18 views: number
19 nsfw: boolean
20 published: Date
21 updated: Date
22 mediaType: 'text/markdown'
23 content: string
24 icon: ActivityIconObject
25 url: ActivityUrlObject[]
26 actor?: string
27 }