PeerTube/shared/models/activitypub/objects/video-comment-object.ts

17 lines
335 B
TypeScript
Raw Normal View History

import { ActivityPubAttributedTo, ActivityTagObject } from './common-objects'
2018-01-05 11:19:25 +01:00
export interface VideoCommentObject {
type: 'Note'
id: string
content: string
mediaType: 'text/markdown'
inReplyTo: string
published: string
2017-12-28 11:16:08 +01:00
updated: string
url: string
attributedTo: ActivityPubAttributedTo
2018-01-05 11:19:25 +01:00
tag: ActivityTagObject[]
}