import { Group } from './group'; export interface Identity { customer: string; customeralias: string | null; locale: string | null; userEmail: string; userId: number; userName: string; userRole: string; groups: Group[]; host: string; }