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

11 lines
181 B
TypeScript
Raw Normal View History

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
}