]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/playlist-object.ts
Playlist server API
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / playlist-object.ts
1 import { ActivityIconObject } from './common-objects'
2
3 export interface PlaylistObject {
4 id: string
5 type: 'Playlist'
6
7 name: string
8 content: string
9 uuid: string
10
11 totalItems: number
12 attributedTo: string[]
13
14 icon: ActivityIconObject
15
16 orderedItems?: string[]
17
18 partOf?: string
19 next?: string
20 first?: string
21
22 to?: string[]
23 }