2019-02-26 10:55:40 +01:00
|
|
|
import { ActivityIconObject } from './common-objects'
|
|
|
|
|
|
|
|
export interface PlaylistObject {
|
|
|
|
id: string
|
|
|
|
type: 'Playlist'
|
|
|
|
|
|
|
|
name: string
|
2022-01-13 14:12:29 +01:00
|
|
|
|
2019-02-26 10:55:40 +01:00
|
|
|
content: string
|
2022-01-13 14:12:29 +01:00
|
|
|
mediaType: 'text/markdown'
|
|
|
|
|
2019-02-26 10:55:40 +01:00
|
|
|
uuid: string
|
|
|
|
|
|
|
|
totalItems: number
|
|
|
|
attributedTo: string[]
|
|
|
|
|
2019-04-17 10:07:00 +02:00
|
|
|
icon?: ActivityIconObject
|
2019-02-26 10:55:40 +01:00
|
|
|
|
2019-03-05 10:58:44 +01:00
|
|
|
published: string
|
|
|
|
updated: string
|
|
|
|
|
2019-02-26 10:55:40 +01:00
|
|
|
orderedItems?: string[]
|
|
|
|
|
|
|
|
partOf?: string
|
|
|
|
next?: string
|
|
|
|
first?: string
|
|
|
|
|
|
|
|
to?: string[]
|
|
|
|
}
|