/**
 * Generated by orval v8.5.3 🍺
 * Do not edit manually.
 * Api
 * CDACC Learning Plan AI API specification
 * OpenAPI spec version: 0.1.0
 */
import type { UserProfileRole } from "./userProfileRole";

export interface UserProfile {
  id: number;
  clerkUserId: string;
  /** @nullable */
  email?: string | null;
  /** @nullable */
  firstName?: string | null;
  /** @nullable */
  lastName?: string | null;
  role: UserProfileRole;
  /** @nullable */
  institutionId?: number | null;
  /** @nullable */
  departmentId?: number | null;
  createdAt?: string;
}
