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