import type PortalGroup from "./PortalGroup.js"; export default interface PortalUser { username: string; fullName: string; preferredView: string | null; description: string | null; email: string; idpUsername: string | null; favGroupId: string; lastLogin: number; access: string; storageUsage: number; storageQuota: number; orgId?: string; role?: string; privileges?: string[]; disabled?: boolean; units: string | null; tags: string[]; culture: string | null; region: string | null; thumbnail: string | null; created: number; modified: number; groups?: PortalGroup[]; provider: string; }