]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/activitypub/objects/video-torrent-object.ts
Handle announces in inbox
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-torrent-object.ts
CommitLineData
e4f97bab
C
1import {
2 ActivityIconObject,
3 ActivityIdentifierObject,
4 ActivityTagObject,
5 ActivityUrlObject
6} from './common-objects'
7
8export interface VideoTorrentObject {
9 type: 'Video'
0d0e8dd0 10 id: string
e4f97bab
C
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[]
d8465018 26 actor?: string
e4f97bab 27}