PeerTube/packages/models/src/activitypub/objects/playlist-object.ts

30 lines
459 B
TypeScript
Raw Normal View History

import { ActivityIconObject, ActivityPubAttributedTo } from './common-objects.js'
2019-02-26 10:55:40 +01:00
export interface PlaylistObject {
id: string
type: 'Playlist'
name: string
2019-02-26 10:55:40 +01:00
content: string
mediaType: 'text/markdown'
2019-02-26 10:55:40 +01:00
uuid: string
totalItems: number
attributedTo: ActivityPubAttributedTo[]
2019-02-26 10:55:40 +01: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[]
}