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

    Interface GetShopCategoryListResponse

    Response for getting shop category list

    interface GetShopCategoryListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            more: boolean;
            shop_categorys: ShopCategory[];
            total_count: number;
        };
        result?: {
            more: boolean;
            shop_categorys: ShopCategory[];
            total_count: number;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    Type Declaration

    • more: boolean

      Whether there are more pages

    • shop_categorys: ShopCategory[]

      List of shop categories

    • total_count: number

      Total count of shop categories

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

    Type Declaration

    • more: boolean

      Whether there are more pages

    • shop_categorys: ShopCategory[]

      List of shop categories

    • total_count: number

      Total count of shop categories