]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/video-torrent-object.ts
ae8f807c8a4f7af49a08319c7858b35d13d1188e
[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: string
21 updated: string
22 mediaType: 'text/markdown'
23 content: string
24 icon: ActivityIconObject
25 url: ActivityUrlObject[]
26 actor?: string
27 }