aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/playlist-object.ts
blob: 5f6733f92a1b8fa143f236a0d52aa646742fa48d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { ActivityIconObject } from './common-objects'

export interface PlaylistObject {
  id: string
  type: 'Playlist'

  name: string
  content: string
  uuid: string

  totalItems: number
  attributedTo: string[]

  icon: ActivityIconObject

  orderedItems?: string[]

  partOf?: string
  next?: string
  first?: string

  to?: string[]
}