]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/activitypub/objects/playlist-object.ts
Create a dedicated table to track video thumbnails
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / playlist-object.ts
CommitLineData
418d092a
C
1import { ActivityIconObject } from './common-objects'
2
3export 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
e8bafea3 14 icon?: ActivityIconObject
418d092a 15
df0b219d
C
16 published: string
17 updated: string
18
418d092a
C
19 orderedItems?: string[]
20
21 partOf?: string
22 next?: string
23 first?: string
24
25 to?: string[]
26}