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

    Interface GetGlobalItemListResponse

    Response for getting global item list

    interface GetGlobalItemListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            global_item_list: GlobalItemListItem[];
            has_next_page: boolean;
            offset?: string;
            total_count: number;
        };
        result?: {
            global_item_list: GlobalItemListItem[];
            has_next_page: boolean;
            offset?: string;
            total_count: number;
        };
    }

    Hierarchy (View Summary)

    • FetchResponse<
          {
              global_item_list: GlobalItemListItem[];
              has_next_page: boolean;
              offset?: string;
              total_count: number;
          },
      >
      • GetGlobalItemListResponse
    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        global_item_list: GlobalItemListItem[];
        has_next_page: boolean;
        offset?: string;
        total_count: number;
    }

    Type Declaration

    • global_item_list: GlobalItemListItem[]

      List of global items

    • has_next_page: boolean

      Whether the item list is more than one page

    • Optionaloffset?: string

      Next page offset if has_next_page is true

    • total_count: number

      Total global item count

    result?: {
        global_item_list: GlobalItemListItem[];
        has_next_page: boolean;
        offset?: string;
        total_count: number;
    }

    Type Declaration

    • global_item_list: GlobalItemListItem[]

      List of global items

    • has_next_page: boolean

      Whether the item list is more than one page

    • Optionaloffset?: string

      Next page offset if has_next_page is true

    • total_count: number

      Total global item count