1
0
Fork 0
peertube/shared/models/activitypub/objects/video-torrent-object.ts

31 lines
748 B
TypeScript
Raw Normal View History

2017-11-09 16:51:58 +00:00
import {
ActivityIconObject,
ActivityIdentifierObject,
ActivityTagObject,
ActivityUrlObject
} from './common-objects'
2017-11-23 15:55:13 +00:00
import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
2017-11-09 16:51:58 +00:00
export interface VideoTorrentObject {
type: 'Video'
2017-11-10 13:34:45 +00:00
id: string
2017-11-09 16:51:58 +00:00
name: string
duration: string
uuid: string
tag: ActivityTagObject[]
category: ActivityIdentifierObject
licence: ActivityIdentifierObject
language: ActivityIdentifierObject
views: number
nsfw: boolean
published: string
updated: string
2017-11-09 16:51:58 +00:00
mediaType: 'text/markdown'
content: string
icon: ActivityIconObject
url: ActivityUrlObject[]
2017-11-15 16:56:21 +00:00
actor?: string
2017-11-23 15:55:13 +00:00
likes?: ActivityPubOrderedCollection<string>
dislikes?: ActivityPubOrderedCollection<string>
2017-11-09 16:51:58 +00:00
}