blob: 0b4695930f24b676b0e4c43df3965ee1df0bb51b (
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
31
32
33
34
35
36
37
38
|
import {ServiceStatus} from '../../../instantiationStatus/instantiationStatus.component.service';
export class ServiceInfoModel {
id: number;
created: Date;
modified: Date;
createdId: number;
modifiedId: number;
numRow: number;
uuid: string;
userId: string;
jobStatus: string;
pause: boolean;
owningEntityId: string;
owningEntityName: string;
project: string;
aicZoneId: string;
aicZoneName: string;
tenantId: string;
tenantName: string;
regionId: string;
regionName: string;
serviceType: string;
subscriberName: string;
serviceInstanceId: string;
serviceInstanceName: string;
serviceModelId: string;
serviceModelName: string;
serviceModelVersion: string;
templateId: string;
auditUserId: string;
jobId: string;
}
export class ServiceInfoUiModel extends ServiceInfoModel{
serviceStatus : ServiceStatus;
serviceIndex : number;
}
|