cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
24 lines (23 loc) • 916 B
TypeScript
declare class AcaAcademicYear {
/** Mongo document id (string representation). */
_id?: string;
/** Academic year code (short code like `2025-26`). */
acayr_code?: string;
/** Human-friendly name of the academic year. */
acayr_name?: string;
/** Optional description/details for the academic year. */
acayr_description?: string;
/** Academic year start date. */
acayr_from_date?: Date;
/** Academic year end date. */
acayr_to_date?: Date;
/** Whether the academic year is active for use. */
acayr_isactive?: boolean;
/** Whether this academic year is the current/active year in the system. */
acayr_iscurrent?: boolean;
/** Whether the academic year is locked from edits. */
acayr_islocked?: boolean;
/** Origin/source of the academic year record (e.g. created via admin/import). */
acayr_origin?: string;
}
export { AcaAcademicYear };