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

17 lines
293 B
TypeScript
Raw Normal View History

2018-01-05 11:19:25 +01:00
import { ActivityTagObject } from './common-objects'
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
2017-12-28 11:16:08 +01:00
attributedTo: string
2018-01-05 11:19:25 +01:00
tag: ActivityTagObject[]
}