Interface VideoSaveParams

interface VideoSaveParams {
    album_id?: number;
    compression?: number | boolean;
    description?: string;
    group_id?: number;
    is_private?: number | boolean;
    link?: string;
    name?: string;
    no_comments?: number | boolean;
    privacy_comment?: string | string[];
    privacy_view?: string | string[];
    repeat?: number | boolean;
    wallpost?: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

album_id?: number

ID of the album to which the saved video will be added.

compression?: number | boolean
description?: string

Description of the video.

group_id?: number

ID of the community in which the video will be saved. By default, the current user's page.

is_private?: number | boolean

'1' - to designate the video as private (send it via a private message), the video will not appear on the user's video list and will not be available by ID for other users, '0' - not to designate the video as private

link?: string

URL for embedding the video from an external website.

name?: string

Name of the video.

no_comments?: number | boolean
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,

wallpost?: number | boolean

'1' - to post the saved video on a user's wall, '0' - not to post the saved video on a user's wall

Generated using TypeDoc