blob: 77c0534fd8c6e633f49a529d13687d3a4a4da009 [file] [log] [blame]
Matteo Scandolo40f8fa92016-12-07 09:21:35 -08001export interface IInstance {
2 id: number;
3 name: string;
4 backend_status: string;
5 created: string;
6}
7
8/**
9 * @whatItDoes Describes the slice model.
10 * @stable
11 */
12export interface ISlice {
13 id: number;
14 name: string;
15 backend_status: string;
16 created: string;
17}
18