vk-io
    Preparing search index...

    Interface MarketGetCommentsParams

    interface MarketGetCommentsParams {
        count?: number;
        extended?: number | boolean;
        fields?: UsersFields[];
        item_id: number;
        need_likes?: number | boolean;
        offset?: number;
        owner_id: number;
        sort?: "desc" | "asc";
        start_comment_id?: number;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    count?: number

    Number of results to return.

    extended?: number | boolean

    '1' - comments will be returned as numbered objects, in addition lists of 'profiles' and 'groups' objects will be returned.

    fields?: UsersFields[]
    item_id: number

    Item ID.

    need_likes?: number | boolean

    '1' - to return likes info.

    offset?: number
    owner_id: number

    ID of an item owner community

    sort?: "desc" | "asc"

    Sort order ('asc' - from old to new, 'desc' - from new to old)

    start_comment_id?: number

    ID of a comment to start a list from (details below).