Interface PhotosReorderPhotosParams

interface PhotosReorderPhotosParams {
    after?: number;
    before?: number;
    owner_id?: number;
    photo_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

after?: number

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

before?: number

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

owner_id?: number

ID of the user or community that owns the photo.

photo_id: number

Photo ID.

Generated using TypeDoc