aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/inventoryApp/src/models/inventory.ts
blob: c8c9c5702575ffc70b0e08f5c7996135d0c68a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export { HitEntry, Result } from '../../../../framework/src/models';
export type InventoryType = {
  treeLevel: number;
  parentUuid: string;
  mountpoint: string;
  uuid: string;
  containedHolder?: (string)[] | null;
  manufacturerName?: string ;
  manufacturerIdentifier: string;
  serial: string;
  date: string;
  version: string;
  description: string;
  partTypeId: string;
  modelIdentifier: string;
  typeName: string;
}