import type { Institution } from './Institution'; import type { ProgramTypeEnum } from './ProgramTypeEnum'; export type Program = { readonly id: number; readonly institution: Institution; institution_id: number; name: string; program_type: ProgramTypeEnum; /** * Duration in months */ duration: number; description?: string | null; /** * Metadata */ data?: any; /** * Metadata */ metadata?: any; created_at?: string; readonly updated_at: string; };