Interface VideoEditAlbumParams

interface VideoEditAlbumParams {
    album_id: number;
    group_id?: number;
    privacy?: "0" | "1" | "2" | "3" | ("0" | "1" | "2" | "3")[];
    title?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

album_id: number

Album ID.

group_id?: number

Community ID (if the album edited is owned by a community).

privacy?: "0" | "1" | "2" | "3" | ("0" | "1" | "2" | "3")[]
title?: string

New album title.

Generated using TypeDoc