Interface PhotosReorderAlbumsParams

interface PhotosReorderAlbumsParams {
    after?: number;
    album_id: number;
    before?: number;
    owner_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

after?: number

ID of the album after which the album in question shall be placed.

album_id: number

Album ID.

before?: number

ID of the album before which the album in question shall be placed.

owner_id?: number

ID of the user or community that owns the album.

Generated using TypeDoc