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

    Interface GetShopCategoryItemListResponse

    Response for getting items in a shop category

    interface GetShopCategoryItemListResponse {
        error: string;
        message: string;
        request_id: string;
        response: { item_list: number[]; more: boolean; total_count: number };
        result?: { item_list: number[]; more: boolean; total_count: number };
    }

    Hierarchy (View Summary)

    • FetchResponse<{ item_list: number[]; more: boolean; total_count: number }>
      • GetShopCategoryItemListResponse
    Index

    Properties

    error: string
    message: string
    request_id: string
    response: { item_list: number[]; more: boolean; total_count: number }

    Type Declaration

    • item_list: number[]

      List of item IDs

    • more: boolean

      Whether there are more pages

    • total_count: number

      Total count of items under this shop category

    result?: { item_list: number[]; more: boolean; total_count: number }

    Type Declaration

    • item_list: number[]

      List of item IDs

    • more: boolean

      Whether there are more pages

    • total_count: number

      Total count of items under this shop category