blob: 796a914a1e208e113ac86717b554949e17b0b32f (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/// <reference types="Cypress" />
export class AsyncInstantiationModel{
id: number;
created : number;
modified: number;
createdId : string;
modifiedId : string;
rowNum : string;
auditUserId : string;
auditTrail : string;
jobId : string;
templateId : string;
userId : string;
jobStatus : string;
statusModifiedDate: number;
hidden : boolean;
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 : number;
serviceInstanceName: string;
serviceModelId: string;
serviceModelName: string;
serviceModelVersion: string;
createdBulkDate: number;
action: string;
constructor(){
this.id = 0;
this.created = 0;
this.modified= 0;
this.createdId = '';
this.modifiedId = '';
this.rowNum = '';
this.auditUserId = '';
this.auditTrail = '';
this.jobId = '';
this.templateId = '';
this.userId = '';
this.jobStatus = '';
this.statusModifiedDate= 0 ;
this.hidden = false;
this.pause= false;
this.owningEntityId= '';
this.owningEntityName= '';
this.project= '';
this.aicZoneId= '';
this.aicZoneName= '';
this.tenantId= '';
this.tenantName= '';
this.regionId= '';
this.regionName= '';
this.serviceType= '';
this.subscriberName= '';
this.serviceInstanceId = 0;
this.serviceInstanceName= '';
this.serviceModelId= '';
this.serviceModelName= '';
this.serviceModelVersion= '';
this.createdBulkDate= 0;
this.action = '';
}
}
|