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

    Interface GetGlobalBrandListResponse

    Response for getting brand list

    interface GetGlobalBrandListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            brand_list: Brand[];
            has_next_page: boolean;
            next_offset: number;
            total_count: number;
        };
        result?: {
            brand_list: Brand[];
            has_next_page: boolean;
            next_offset: number;
            total_count: number;
        };
    }

    Hierarchy (View Summary)

    • FetchResponse<
          {
              brand_list: Brand[];
              has_next_page: boolean;
              next_offset: number;
              total_count: number;
          },
      >
      • GetGlobalBrandListResponse
    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        brand_list: Brand[];
        has_next_page: boolean;
        next_offset: number;
        total_count: number;
    }

    Type Declaration

    • brand_list: Brand[]

      List of brands

    • has_next_page: boolean

      Whether there are more pages

    • next_offset: number

      Next page offset

    • total_count: number

      Total brand count

    result?: {
        brand_list: Brand[];
        has_next_page: boolean;
        next_offset: number;
        total_count: number;
    }

    Type Declaration

    • brand_list: Brand[]

      List of brands

    • has_next_page: boolean

      Whether there are more pages

    • next_offset: number

      Next page offset

    • total_count: number

      Total brand count