]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/video-comment-object.ts
Merge branch 'release/2.1.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-comment-object.ts
1 import { ActivityTagObject } from './common-objects'
2
3 export interface VideoCommentObject {
4 type: 'Note'
5 id: string
6 content: string
7 inReplyTo: string
8 published: string
9 updated: string
10 url: string
11 attributedTo: string
12 tag: ActivityTagObject[]
13 }