cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
51 lines (50 loc) • 2.22 kB
TypeScript
import { ICoreSygms, ICoreSyctr, ICoreSypin } from "../core";
declare class AcademicsEducationBoard {
/** Mongo document id (string representation). */
_id?: string;
/** Board code (e.g. `CBSE`, `ICSE`). */
edbrd_code?: string;
/** Board name (full name). */
edbrd_name?: string;
/** Board short name (abbreviation). */
edbrd_short_name?: string;
/** Board type reference id (`core_general_master`). */
edbrd_type_sygms?: string | ICoreSygms;
/** Board category reference id (`core_general_master`). */
edbrd_category_sygms?: string | ICoreSygms;
/** State (for state boards). */
edbrd_state?: string;
/** Country reference id (`core_system_country`). */
edbrd_country_id_syctr?: string | ICoreSyctr;
/** Board official website URL. */
edbrd_website?: string;
/** Board contact email. */
edbrd_contact_email?: string;
/** Board contact phone. */
edbrd_contact_phone?: string;
/** Board address. */
edbrd_address?: string;
/** PIN reference id (`core_pin_code`). */
edbrd_pin_sypin?: string | ICoreSypin;
/** City auto-populated from PIN. */
edbrd_city_sypin?: string;
/** State auto-populated from PIN. */
edbrd_state_sypin?: string;
/** UDISE code format reference id (`core_general_master`). */
edbrd_udise_format_sygms?: string | ICoreSygms;
/** Affiliation number format reference id (`core_general_master`). */
edbrd_affiliation_format_sygms?: string | ICoreSygms;
/** Roll number format reference id (`core_general_master`). */
edbrd_roll_number_format_sygms?: string | ICoreSygms;
/** Registration number format reference id (`core_general_master`). */
edbrd_registration_number_format_sygms?: string | ICoreSygms;
/** Grading system reference id (`core_general_master`). */
edbrd_grading_system_sygms?: string | ICoreSygms;
/** Grade scale reference id (`core_general_master`). */
edbrd_grade_scale_sygms?: string | ICoreSygms;
/** Board-specific configuration object (subjects/streams/etc.). */
edbrd_configuration?: any;
/** Whether the board record is active. */
edbrd_isactive?: boolean;
}
export { AcademicsEducationBoard };