cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
17 lines (16 loc) • 649 B
TypeScript
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 };