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

14 lines
309 B
TypeScript
Raw Normal View History

import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
2017-11-09 16:51:58 +00:00
export interface VideoChannelObject {
type: 'VideoChannel'
2017-11-10 13:34:45 +00:00
id: string
2017-11-09 16:51:58 +00:00
name: string
content: string
2017-11-10 13:34:45 +00:00
uuid: string
published: string
updated: string
2017-11-15 16:56:21 +00:00
actor?: string
shares?: ActivityPubOrderedCollection<string>
2017-11-09 16:51:58 +00:00
}