cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
23 lines (22 loc) • 781 B
TypeScript
declare class AcaClassPrgBranchBase {
/** Mongo document id (string representation). */
_id?: string;
/** Branch display name. */
acabrn_name?: string;
/** Branch short code. */
acabrn_code?: string;
/** Ordering sequence for the branch. */
acabrn_sequence?: number;
/** Whether this branch is active. */
acabrn_isactive?: boolean;
/** Whether this branch is locked from edits. */
acabrn_islocked?: boolean;
}
declare class AcaClassPrgBranch extends AcaClassPrgBranchBase {
/** Reference to the class-program master. */
acabrn_class_program_id_acacpm?: string;
/** Optional branch identifier from general master. */
acabrn_branch_id_sygms?: string;
}
export { AcaClassPrgBranchBase, // interface
AcaClassPrgBranch };