aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/services/aaiService/model/crawledAaiService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vid-webpack-master/src/app/shared/services/aaiService/model/crawledAaiService.ts')
-rw-r--r--vid-webpack-master/src/app/shared/services/aaiService/model/crawledAaiService.ts30
1 files changed, 30 insertions, 0 deletions
diff --git a/vid-webpack-master/src/app/shared/services/aaiService/model/crawledAaiService.ts b/vid-webpack-master/src/app/shared/services/aaiService/model/crawledAaiService.ts
new file mode 100644
index 000000000..8c27d43f7
--- /dev/null
+++ b/vid-webpack-master/src/app/shared/services/aaiService/model/crawledAaiService.ts
@@ -0,0 +1,30 @@
+
+ export interface Child {
+ type: string;
+ orchestrationStatus: string;
+ provStatus: string;
+ inMaint: boolean;
+ modelVersionId: string;
+ modelCustomizationId: string;
+ modelInvariantId: string;
+ id: string;
+ name: string;
+ children: any[];
+ }
+
+ export interface Root {
+ type: string;
+ orchestrationStatus: string;
+ modelVersionId: string;
+ modelCustomizationId: string;
+ modelInvariantId: string;
+ id: string;
+ name: string;
+ children: Child[];
+ }
+
+ export interface RootObject {
+ root: Root;
+ }
+
+