]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/video-torrent-object.ts
Begin activitypub
[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 name: string
11 duration: string
12 uuid: string
13 tag: ActivityTagObject[]
14 category: ActivityIdentifierObject
15 licence: ActivityIdentifierObject
16 language: ActivityIdentifierObject
17 views: number
18 nsfw: boolean
19 published: Date
20 updated: Date
21 mediaType: 'text/markdown'
22 content: string
23 icon: ActivityIconObject
24 url: ActivityUrlObject[]
25 }