declare class AcaAcademicYearMappingBase { /** Mongo document id (string representation). */ _id?: string; /** Whether this mapping is locked from edits. */ acayrmp_islocked?: boolean; /** Whether this mapping is the current mapping. */ acayrmp_iscurrent?: boolean; } declare class AcaAcademicYearMapping extends AcaAcademicYearMappingBase { /** Reference to the academic year being mapped. */ acayrmp_academic_year_id_acayr?: string; /** Reference to the academic entity (school/organization). */ acayrmp_entity_id_syen?: string; } export { AcaAcademicYearMappingBase, // interface AcaAcademicYearMapping };