import { OrganizationUserRole } from "./OrganizationUserRole"; import { UserType } from "./UserType"; export interface User { id: string; fullName?: string; emailorUserName: string; userType: UserType; organizationUserRole?: OrganizationUserRole; /** * Indicates whether the user has chosen a plan, intended for the trial plan */ isPlanChosen: boolean; completedOnBoarding: boolean; hasGeneratedApiKey: boolean; isSystemAdmin?: boolean; }