1
0
Fork 0
peertube/shared/models/activitypub/objects/playlist-object.ts

27 lines
383 B
TypeScript
Raw Normal View History

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