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