Interface PhotosMoveParams

interface PhotosMoveParams {
    owner_id?: number;
    photo_ids?: number | number[];
    target_album_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

owner_id?: number

ID of the user or community that owns the photo.

photo_ids?: number | number[]
target_album_id: number

ID of the album to which the photo will be moved.

Generated using TypeDoc