DTO for playlists.

PlaylistDto

interface PlaylistDto {
    ItemIds?: string[];
    OpenAccess?: boolean;
    Shares?: PlaylistUserPermissions[];
}

Properties

ItemIds?: string[]

Gets or sets the item ids.

PlaylistDto

OpenAccess?: boolean

Gets or sets a value indicating whether the playlist is publicly readable.

PlaylistDto

Gets or sets the share permissions.

PlaylistDto