export interface IUser { id: string; uri?: string; consumerId?: string; organizationId?: string; email?: string; mobilePhoneNumber?: string; code?: { generatedAt?: any; value?: string; }; password?: string; enabled: boolean; type?: any; profileUri?: string; profile?: any; profilesUri?: string[]; profiles?: any[]; rolesUri?: string[]; frozenRoles?: any[]; roles?: any[]; tokens?: { facebook?: string; google?: string; twitter?: string; }; lastLoginAt: any; createdAt: any; updatedAt?: any; }