Interface VideoEditParams

interface VideoEditParams {
    desc?: string;
    name?: string;
    no_comments?: number | boolean;
    owner_id?: number;
    privacy_comment?: string | string[];
    privacy_view?: string | string[];
    repeat?: number | boolean;
    video_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

desc?: string

New video description.

name?: string

New video title.

no_comments?: number | boolean

Disable comments for the group video.

owner_id?: number

ID of the user or community that owns the video.

privacy_comment?: string | string[]
privacy_view?: string | string[]
repeat?: number | boolean

'1' - to repeat the playback of the video, '0' - to play the video once,

video_id: number

Video ID.

Generated using TypeDoc