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

    Interface UpdateShopCategoryResponse

    Response for updating a shop category

    interface UpdateShopCategoryResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            name: string;
            shop_category_id: number;
            sort_weight: number;
            status: string;
        };
        result?: {
            name: string;
            shop_category_id: number;
            sort_weight: number;
            status: string;
        };
    }

    Hierarchy (View Summary)

    • FetchResponse<
          {
              name: string;
              shop_category_id: number;
              sort_weight: number;
              status: string;
          },
      >
      • UpdateShopCategoryResponse
    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        name: string;
        shop_category_id: number;
        sort_weight: number;
        status: string;
    }

    Type Declaration

    • name: string

      ShopCategory's name

    • shop_category_id: number

      ShopCategory's unique identifier

    • sort_weight: number

      ShopCategory's sort weight

    • status: string

      ShopCategory's status

    result?: {
        name: string;
        shop_category_id: number;
        sort_weight: number;
        status: string;
    }

    Type Declaration

    • name: string

      ShopCategory's name

    • shop_category_id: number

      ShopCategory's unique identifier

    • sort_weight: number

      ShopCategory's sort weight

    • status: string

      ShopCategory's status