Interface PhotosEditAlbumParams

interface PhotosEditAlbumParams {
    album_id: number;
    comments_disabled?: number | boolean;
    description?: string;
    owner_id?: number;
    privacy_comment?: string | string[];
    privacy_view?: string | string[];
    title?: string;
    upload_by_admins_only?: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

album_id: number

ID of the photo album to be edited.

comments_disabled?: number | boolean
description?: string

New album description.

owner_id?: number

ID of the user or community that owns the album.

privacy_comment?: string | string[]
privacy_view?: string | string[]
title?: string

New album title.

upload_by_admins_only?: number | boolean

Generated using TypeDoc