File

src/app/shared/widgets/apps/my-shop-md/shop-category/shop-category.ts

Index

Properties

Properties

_actions
_actions: literal type
Type : literal type
_links
_links: literal type
Type : literal type
collapsedIcon
collapsedIcon: string
Type : string
data
data: string
Type : string
description
description: string
Type : string
expandedIcon
expandedIcon: string
Type : string
identifier
identifier: string
Type : string
label
label: string
Type : string
leaf
leaf: boolean
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;
    };
  };
}

results matching ""

    No results matching ""