src/app/shared/widgets/apps/my-shop-md/shop-category/shop-category.ts
Properties |
_actions |
_actions:
|
Type : literal type
|
_links |
_links:
|
Type : literal type
|
collapsedIcon |
collapsedIcon:
|
Type : string
|
data |
data:
|
Type : string
|
description |
description:
|
Type : string
|
expandedIcon |
expandedIcon:
|
Type : string
|
identifier |
identifier:
|
Type : string
|
label |
label:
|
Type : string
|
leaf |
leaf:
|
Type : boolean
|
import { ActionNavigation } from "../../../../components/hal/hal";
export interface ShopCategory {
identifier: string;
description: string;
label: string;
data: string;
expandedIcon: string;
collapsedIcon: string;
leaf: boolean;
_actions: {
links: ActionNavigation[];
};
_links: {
products: {
href: string;
};
};
}