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

14 lines
262 B
TypeScript
Raw Normal View History

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