Shopee SDK API Reference - v1.11.0
    Preparing search index...

    Interface GetCommentResponse

    Response for getting product comments

    interface GetCommentResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            item_comment_list: CommentItem[];
            more: boolean;
            next_cursor: string;
        };
        result?: {
            item_comment_list: CommentItem[];
            more: boolean;
            next_cursor: string;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        item_comment_list: CommentItem[];
        more: boolean;
        next_cursor: string;
    }

    Type Declaration

    • item_comment_list: CommentItem[]

      List of comments

    • more: boolean

      Indicates if there are more comments to fetch

    • next_cursor: string

      Cursor for the next page of results

    result?: {
        item_comment_list: CommentItem[];
        more: boolean;
        next_cursor: string;
    }

    Type Declaration

    • item_comment_list: CommentItem[]

      List of comments

    • more: boolean

      Indicates if there are more comments to fetch

    • next_cursor: string

      Cursor for the next page of results