Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | /// <reference types="Cypress" /> |
| 2 | |
| 3 | export class AsyncInstantiationModel{ |
| 4 | id: number; |
| 5 | created : number; |
| 6 | modified: number; |
| 7 | createdId : string; |
| 8 | modifiedId : string; |
| 9 | rowNum : string; |
| 10 | auditUserId : string; |
| 11 | auditTrail : string; |
| 12 | jobId : string; |
| 13 | templateId : string; |
| 14 | userId : string; |
| 15 | jobStatus : string; |
| 16 | statusModifiedDate: number; |
| 17 | hidden : boolean; |
| 18 | pause: boolean; |
| 19 | owningEntityId: string; |
| 20 | owningEntityName: string; |
| 21 | project: string; |
| 22 | aicZoneId: string; |
| 23 | aicZoneName: string; |
| 24 | tenantId: string; |
| 25 | tenantName: string; |
| 26 | regionId: string; |
| 27 | regionName: string; |
| 28 | serviceType: string; |
| 29 | subscriberName: string; |
| 30 | serviceInstanceId : number; |
| 31 | serviceInstanceName: string; |
| 32 | serviceModelId: string; |
| 33 | serviceModelName: string; |
| 34 | serviceModelVersion: string; |
| 35 | createdBulkDate: number; |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 36 | action: string; |
| 37 | |
| 38 | constructor(){ |
| 39 | this.id = 0; |
| 40 | this.created = 0; |
| 41 | this.modified= 0; |
| 42 | this.createdId = ''; |
| 43 | this.modifiedId = ''; |
| 44 | this.rowNum = ''; |
| 45 | this.auditUserId = ''; |
| 46 | this.auditTrail = ''; |
| 47 | this.jobId = ''; |
| 48 | this.templateId = ''; |
| 49 | this.userId = ''; |
| 50 | this.jobStatus = ''; |
| 51 | this.statusModifiedDate= 0 ; |
| 52 | this.hidden = false; |
| 53 | this.pause= false; |
| 54 | this.owningEntityId= ''; |
| 55 | this.owningEntityName= ''; |
| 56 | this.project= ''; |
| 57 | this.aicZoneId= ''; |
| 58 | this.aicZoneName= ''; |
| 59 | this.tenantId= ''; |
| 60 | this.tenantName= ''; |
| 61 | this.regionId= ''; |
| 62 | this.regionName= ''; |
| 63 | this.serviceType= ''; |
| 64 | this.subscriberName= ''; |
| 65 | this.serviceInstanceId = 0; |
| 66 | this.serviceInstanceName= ''; |
| 67 | this.serviceModelId= ''; |
| 68 | this.serviceModelName= ''; |
| 69 | this.serviceModelVersion= ''; |
| 70 | this.createdBulkDate= 0; |
| 71 | this.action = ''; |
| 72 | } |
Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 73 | } |