X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Finterfaces%2Fcontrolpanel.types.ts;h=cad06309f195896a59c1d3a2fd627225811692bc;hb=ad70d4114bbfc5dbf20fd1a8151095d89610c759;hp=ec6e5c8965c1ed17dc6cb4ddbd70c6819daf2bfa;hpb=f507d92d55ee77fad16cc024ea95c869e0d5dc32;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/interfaces/controlpanel.types.ts b/webapp-frontend/src/app/interfaces/controlpanel.types.ts index ec6e5c8..cad0630 100644 --- a/webapp-frontend/src/app/interfaces/controlpanel.types.ts +++ b/webapp-frontend/src/app/interfaces/controlpanel.types.ts @@ -19,40 +19,9 @@ * ========================LICENSE_END=================================== */ -// Models of data used by Controlpanel admin services +// Models of data used by Control Panel admin services export interface ControlpanelSuccessTransport { status: number; data: string; } - -export interface EcompRoleFunction { - name: string; - code: string; - type: string; - action: string; -} - -export interface EcompRole { - id: number; - name: string; - [position: number]: EcompRoleFunction; -} - -export interface EcompUser { - orgId?: number; - managerId?: string; - firstName?: string; - middleInitial?: string; - lastName?: string; - phone?: string; - email?: string; - hrid?: string; - orgUserId?: string; - orgCode?: string; - orgManagerUserId?: string; - jobTitle?: string; - loginId: string; - active: boolean; - [position: number]: EcompRole; -}