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