playlist-object.ts 414 B

1234567891011121314151617181920212223242526272829
  1. import { ActivityIconObject } from './common-objects'
  2. export interface PlaylistObject {
  3. id: string
  4. type: 'Playlist'
  5. name: string
  6. content: string
  7. mediaType: 'text/markdown'
  8. uuid: string
  9. totalItems: number
  10. attributedTo: string[]
  11. icon?: ActivityIconObject
  12. published: string
  13. updated: string
  14. orderedItems?: string[]
  15. partOf?: string
  16. next?: string
  17. first?: string
  18. to?: string[]
  19. }