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






                                                     
 
                 

                            




                        
                           
 


                   







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

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

  name: string

  content: string
  mediaType: 'text/markdown'

  uuid: string

  totalItems: number
  attributedTo: string[]

  icon?: ActivityIconObject

  published: string
  updated: string

  orderedItems?: string[]

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

  to?: string[]
}