Skip to content

Commit

Permalink
Added props for FaultEvent interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasmadei authored and blcham committed Jul 8, 2024
1 parent f77e516 commit 1d5f1e0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/models/eventModel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export interface FaultEvent extends AbstractModel {
};
selectedEstimate?: {
iri?: string;
value?: any;
};
supertypes?: {
iri?: string;
Expand All @@ -101,6 +102,11 @@ export interface FaultEvent extends AbstractModel {
iri?: string;
hasFailureRate?: {
estimate?: {
iri?: string;
value?: number;
};
prediction?: {
iri?: string;
value?: number;
};
};
Expand All @@ -110,12 +116,18 @@ export interface FaultEvent extends AbstractModel {
quantity?: number;
supertypes?: {
ataCode?: string;
partNumber?: string;
name?: string;
};
stock?: string;
schematicDesignation?: string;
};
};
hasFailureRate?: {
estimate?: {
iri?: string;
value?: number;
};
iri?: string;
requirement?: {
iri?: string;
Expand Down

0 comments on commit 1d5f1e0

Please sign in to comment.