Interface VideoGetParams

interface VideoGetParams {
    album_id?: number;
    count?: number;
    extended?: number | boolean;
    fields?: string | string[];
    offset?: number;
    owner_id?: number;
    sort_album?: 0 | 1;
    videos?: string | string[];
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

album_id?: number

ID of the album containing the video(s).

count?: number

Number of videos to return.

extended?: number | boolean

'1' - to return an extended response with additional fields

fields?: string | string[]
offset?: number

Offset needed to return a specific subset of videos.

owner_id?: number

ID of the user or community that owns the video(s).

sort_album?: 0 | 1

Sort order: '0' - newest video first, '1' - oldest video first

videos?: string | string[]

Generated using TypeDoc