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

48 lines
996 B
TypeScript
Raw Normal View History

2017-11-09 11:51:58 -05:00
import {
ActivityIconObject,
2018-09-11 10:27:07 -04:00
ActivityIdentifierObject,
ActivityPubAttributedTo,
2017-11-09 11:51:58 -05:00
ActivityTagObject,
ActivityUrlObject
} from './common-objects'
import { VideoState } from '../../videos'
2017-11-09 11:51:58 -05:00
2020-09-17 07:59:02 -04:00
export interface VideoObject {
2017-11-09 11:51:58 -05:00
type: 'Video'
2017-11-10 08:34:45 -05:00
id: string
2017-11-09 11:51:58 -05:00
name: string
duration: string
uuid: string
tag: ActivityTagObject[]
category: ActivityIdentifierObject
licence: ActivityIdentifierObject
language: ActivityIdentifierObject
2018-07-12 13:02:00 -04:00
subtitleLanguage: ActivityIdentifierObject[]
2017-11-09 11:51:58 -05:00
views: number
2020-09-17 07:59:02 -04:00
sensitive: boolean
2020-09-17 07:59:02 -04:00
isLiveBroadcast: boolean
2020-01-31 10:56:52 -05:00
commentsEnabled: boolean
downloadEnabled: boolean
waitTranscoding: boolean
state: VideoState
published: string
2019-01-12 08:41:45 -05:00
originallyPublishedAt: string
updated: string
2017-11-09 11:51:58 -05:00
mediaType: 'text/markdown'
content: string
support: string
icon: ActivityIconObject[]
2017-11-09 11:51:58 -05:00
url: ActivityUrlObject[]
likes: string
dislikes: string
shares: string
comments: string
2017-12-14 11:38:41 -05:00
attributedTo: ActivityPubAttributedTo[]
2018-01-10 11:18:12 -05:00
to?: string[]
cc?: string[]
2017-11-09 11:51:58 -05:00
}