Interface PhotosGetAllCommentsParams

interface PhotosGetAllCommentsParams {
    album_id?: number;
    count?: number;
    need_likes?: number | boolean;
    offset?: number;
    owner_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

album_id?: number

Album ID. If the parameter is not set, comments on all of the user's albums will be returned.

count?: number

Number of comments to return. By default, '20'. Maximum value, '100'.

need_likes?: number | boolean

'1' - to return an additional 'likes' field, '0' - (default)

offset?: number

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

owner_id?: number

ID of the user or community that owns the album(s).

Generated using TypeDoc