blob: 8c27d43f779e136bf0cab0169a4ecc50778b9520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
}
|