]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/activitypub/objects/playlist-object.ts
Merge branch 'release/4.1.0' into develop
[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
3726c372 8
418d092a 9 content: string
3726c372
C
10 mediaType: 'text/markdown'
11
418d092a
C
12 uuid: string
13
14 totalItems: number
15 attributedTo: string[]
16
e8bafea3 17 icon?: ActivityIconObject
418d092a 18
df0b219d
C
19 published: string
20 updated: string
21
418d092a
C
22 orderedItems?: string[]
23
24 partOf?: string
25 next?: string
26 first?: string
27
28 to?: string[]
29}