Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface GetCommentResponseData

    GetCommentResponseData sub-interface for GetCommentResponse

    interface GetCommentResponseData {
        item_comment_list?: GetCommentItemComment[];
        more?: boolean;
        next_cursor?: string;
    }
    Index

    Properties

    item_comment_list?: GetCommentItemComment[]

    The comment data list of the items.

    more?: boolean

    This is to indicate whether the comment list is more than one page. If this value is true, you may want to continue to check next page to retrieve the rest of comments. But only respond 500 comments at most through OpenAPI, if there are more than 500, this field "more" also respond "true".

    next_cursor?: string

    If more is true, you should pass the next_cursor in the next request as cursor. The value of next_cursor will be empty string when more is false.