aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/activitypub/objects/playlist-object.ts
blob: b561d8efd988a23d283f60b265b6e1f7f113eab6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                     
                           
 


                   







                         
import { ActivityIconObject } from './common-objects'

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

  name: string
  content: string
  uuid: string

  totalItems: number
  attributedTo: string[]

  icon?: ActivityIconObject

  published: string
  updated: string

  orderedItems?: string[]

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

  to?: string[]
}