/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { InstitutionTypeEnum } from './InstitutionTypeEnum'; export type Institution = { readonly id: number; name: string; institution_type?: InstitutionTypeEnum; location?: string | null; website?: string | null; accreditation?: string | null; established_year?: number | null; /** * Metadata */ data?: any; /** * Metadata */ metadata?: any; created_at?: string; readonly updated_at: string; };