interface PlaylistDto {
    account_id?: string;
    created_at?: string;
    description?: string;
    id?: string;
    name?: string;
    reference_id?: string;
    search?: string;
    type?: string;
    updated_at?: string;
    video_ids?: string[];
    videos?: VideoDto[];
}

Properties

account_id?: string

Video Cloud account id

created_at?: string

date/time created

description?: string

playlist description

id?: string

the playlist id

name?: string

the playlist name

reference_id?: string

the playlist reference id

search?: string

search string to retrieve the videos (smart playlists only)

type?: string

the playlist type: EXPLICIT or smart playlist type

updated_at?: string

date/time last modified

video_ids?: string[]

array of video ids (EXPLICIT playlists only)

videos?: VideoDto[]

array of video maps