2018-01-05 11:19:25 +01:00
|
|
|
import { ActivityTagObject } from './common-objects'
|
|
|
|
|
2017-12-22 09:14:50 +01:00
|
|
|
export interface VideoCommentObject {
|
|
|
|
type: 'Note'
|
|
|
|
id: string
|
2022-01-13 14:12:29 +01:00
|
|
|
|
2017-12-22 09:14:50 +01:00
|
|
|
content: string
|
2022-01-13 14:12:29 +01:00
|
|
|
mediaType: 'text/markdown'
|
|
|
|
|
2017-12-22 09:14:50 +01:00
|
|
|
inReplyTo: string
|
|
|
|
published: string
|
2017-12-28 11:16:08 +01:00
|
|
|
updated: string
|
2017-12-22 09:14:50 +01:00
|
|
|
url: string
|
2017-12-28 11:16:08 +01:00
|
|
|
attributedTo: string
|
2018-01-05 11:19:25 +01:00
|
|
|
tag: ActivityTagObject[]
|
2017-12-22 09:14:50 +01:00
|
|
|
}
|