| export interface IInstance { | |
| id: number; | |
| name: string; | |
| backend_status: string; | |
| created: string; | |
| } | |
| /** | |
| * @whatItDoes Describes the slice model. | |
| * @stable | |
| */ | |
| export interface ISlice { | |
| id: number; | |
| name: string; | |
| backend_status: string; | |
| created: string; | |
| } | |