Fix Bug 2296: Newly Created Ns should come first in NG-UI
[osm/NG-UI.git] / src / models / NSInstanceModel.ts
index 66294cf..5039cc5 100644 (file)
@@ -18,7 +18,7 @@
 /**
  * @file  Model for NS Instance related information.
  */
-// tslint:disable: completed-docs
+/* eslint-disable */
 import { DF, VLD } from 'NSDModel';
 import { VNFDAdminDetails } from 'VNFDModel';
 
@@ -49,6 +49,8 @@ export interface NSInstanceDetails {
     additionalParamsForNs: AdditionalParamForN;
     _id?: string;
     vcaStatus?: object;
+    startTime?: string;
+    'create-time'?: string;
 }
 
 /** Interface for Admin */
@@ -67,7 +69,6 @@ interface ROAdmin {
 }
 
 /** Interface for _Admin */
-// tslint:disable-next-line:class-name
 interface _Admin {
     'projects_write': string[];
     deployed: DeployedAdmin;
@@ -114,7 +115,6 @@ export interface NSD {
 }
 
 /** Interface for _AdminDetails */
-// tslint:disable-next-line:class-name
 export interface _AdminDetails {
     usageState: string;
     projects_write: string[];
@@ -268,6 +268,7 @@ export interface NSDInstanceData {
     operationParams?: OPERATIONPARAMS;
     'nsd-id': string;
     constituent: string[];
+    'create-time'?: string;
 }
 
 /** Interface for the operationparams */