Fix Bug 2048:The VCA Status for an NS with both a KNF and a VNF does not provide...
[osm/NG-UI.git] / src / models / UserModel.ts
index 64626c8..babf2c3 100644 (file)
@@ -37,6 +37,9 @@ export interface UserDetail {
     identifier: string;
     projectListName?: string;
     project_role_mappings?: ProjectRoleMappings[];
     identifier: string;
     projectListName?: string;
     project_role_mappings?: ProjectRoleMappings[];
+    account_expire_time: string;
+    password_expire_time?: string;
+    email_id?: string;
 }
 
 /** Interface for user role mappings */
 }
 
 /** Interface for user role mappings */
@@ -50,6 +53,9 @@ interface Admin {
     salt: string;
     created: number;
     modified: number;
     salt: string;
     created: number;
     modified: number;
+    user_status?: string;
+    account_expire_time?: number;
+    password_expire_time?: number;
 }
 /** Interface for UserDetail */
 export interface UserData {
 }
 /** Interface for UserDetail */
 export interface UserData {
@@ -58,6 +64,9 @@ export interface UserData {
     modified: string;
     created: string;
     identifier: string;
     modified: string;
     created: string;
     identifier: string;
+    user_status: string;
+    account_expire_time?: string;
+    email_id?: string;
 }
 
 /** Interface for Project Roles Mappings */
 }
 
 /** Interface for Project Roles Mappings */