Interface PhotosGetAllParams

interface PhotosGetAllParams {
    count?: number;
    extended?: number | boolean;
    need_hidden?: number | boolean;
    no_service_albums?: number | boolean;
    offset?: number;
    owner_id?: number;
    photo_sizes?: number | boolean;
    skip_hidden?: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count?: number

Number of photos to return.

extended?: number | boolean

'1' - to return detailed information about photos

need_hidden?: number | boolean

'1' - to show information about photos being hidden from the block above the wall.

no_service_albums?: number | boolean

'1' - to return photos only from standard albums, '0' - to return all photos including those in service albums, e.g., 'My wall photos' (default)

offset?: number

Offset needed to return a specific subset of photos. By default, '0'.

owner_id?: number

ID of a user or community that owns the photos. Use a negative value to designate a community ID.

photo_sizes?: number | boolean

'1' - to return image sizes in [vk.com/dev/photo_sizes|special format].

skip_hidden?: number | boolean

'1' - not to return photos being hidden from the block above the wall. Works only with owner_id>0, no_service_albums is ignored.

Generated using TypeDoc