// // SessionListModel.swift // LMS // // Created by Suraj Kumar Mandal on 19/09/22. // import Foundation // MARK: - SessionListModel class SessionListModel: Codable { var id, scheduleId, userId: Int? var date, startTime, endTime: String? var linkCreated: Bool? var link: String? var batch: SessionListBatch? var scheduleTitle, schedulePlace, status, workFlowStatus: String? var eventNo: Int? var notes: JSONNull? var offline: Bool? var batchName: String? var schoolName: String? var interventionName: String? var interventionLevelName: String? var teacherFirstName: String? var teacherLastName: String? var interventionId: Int? var interventionLevelId: Int? var batchId: Int? var schoolId: String? init(id: Int?, scheduleId: Int?, userId: Int?, date: String?, startTime: String?, endTime: String?, linkCreated: Bool?, link: String?, batch: SessionListBatch?, scheduleTitle: String?, schedulePlace: String?, status: String?, workFlowStatus: String?, eventNo: Int?, notes: JSONNull?, offline: Bool?, batchName: String?, schoolName: String? ,interventionName: String? ,interventionLevelName: String? ,teacherFirstName: String? ,teacherLastName: String?, interventionId: Int? ,interventionLevelId: Int?, batchId: Int?, schoolId: String?) { self.id = id self.scheduleId = scheduleId self.userId = userId self.date = date self.startTime = startTime self.endTime = endTime self.linkCreated = linkCreated self.link = link self.batch = batch self.scheduleTitle = scheduleTitle self.schedulePlace = schedulePlace self.status = status self.workFlowStatus = workFlowStatus self.eventNo = eventNo self.notes = notes self.offline = offline self.batchName = batchName self.schoolName = schoolName self.interventionName = interventionName self.interventionLevelName = interventionLevelName self.teacherFirstName = teacherFirstName self.teacherLastName = teacherLastName self.interventionId = interventionId self.interventionLevelId = interventionLevelId self.batchId = batchId self.schoolId = schoolId } } // MARK: - Batch class SessionListBatch: Codable { var viewBatchRS: SessionListViewBatchRS? var teacher: SessionListTeacher? var comments: String? var substituteTeachers: [SessionListTeacher]? var status: String? var id: Int? init(viewBatchRS: SessionListViewBatchRS?, teacher: SessionListTeacher?, comments: String?, substituteTeachers: [SessionListTeacher]?, status: String?, id: Int?) { self.viewBatchRS = viewBatchRS self.teacher = teacher self.comments = comments self.substituteTeachers = substituteTeachers self.status = status self.id = id } } // MARK: - Teacher class SessionListTeacher: Codable { var id: Int? var name: String? var middleName: String? var lastName, username, email, mobile: String? var userType: SessionListUserType? var keycloakUserId: String? var enable: Bool? var intervantions: [Int]? init(id: Int?, name: String?, middleName: String?, lastName: String?, username: String?, email: String?, mobile: String?, userType: SessionListUserType?, keycloakUserId: String?, enable: Bool?, intervantions: [Int]?) { self.id = id self.name = name self.middleName = middleName self.lastName = lastName self.username = username self.email = email self.mobile = mobile self.userType = userType self.keycloakUserId = keycloakUserId self.enable = enable self.intervantions = intervantions } } // MARK: - UserType class SessionListUserType: Codable { var id: Int? var actor, parentActor, discription, defaultRealmRole: String? var createAccess, deleteAccess, editAccess, viewAccess: String? var appUrl: String? init(id: Int?, actor: String?, parentActor: String?, discription: String?, defaultRealmRole: String?, createAccess: String?, deleteAccess: String?, editAccess: String?, viewAccess: String?, appUrl: String?) { self.id = id self.actor = actor self.parentActor = parentActor self.discription = discription self.defaultRealmRole = defaultRealmRole self.createAccess = createAccess self.deleteAccess = deleteAccess self.editAccess = editAccess self.viewAccess = viewAccess self.appUrl = appUrl } } // MARK: - ViewBatchRS class SessionListViewBatchRS: Codable { var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String? var id: Int? var academicYear, batchName: String? var studentBatch, deleted, active: Bool? var status, comments: String? var interventionDTO: SessionListInterventionDTO? var schoolDTO: SessionListSchoolDTO? var batachUserDtos: [SessionListBatachUserDto]? var level: SessionListLevel? init(createdBy: String?, createdDate: String?, lastModifiedBy: String?, lastModifiedDate: String?, id: Int?, academicYear: String?, batchName: String?, studentBatch: Bool?, deleted: Bool?, active: Bool?, status: String?, comments: String?, interventionDTO: SessionListInterventionDTO?, schoolDTO: SessionListSchoolDTO?, batachUserDtos: [SessionListBatachUserDto]?, level: SessionListLevel?) { self.createdBy = createdBy self.createdDate = createdDate self.lastModifiedBy = lastModifiedBy self.lastModifiedDate = lastModifiedDate self.id = id self.academicYear = academicYear self.batchName = batchName self.studentBatch = studentBatch self.deleted = deleted self.active = active self.status = status self.comments = comments self.interventionDTO = interventionDTO self.schoolDTO = schoolDTO self.batachUserDtos = batachUserDtos self.level = level } } // MARK: - BatachUserDto class SessionListBatachUserDto: Codable { var userDto: Teacher? var standard, division, grade: String? init(userDto: Teacher?, standard: String?, division: String?, grade: String?) { self.userDto = userDto self.standard = standard self.division = division self.grade = grade } } // MARK: - InterventionDTO class SessionListInterventionDTO: Codable { var id: Int? var incrementor: JSONNull? var interventionId, interventionName: String? var interventionLevels: [String]? var beneficiaryIds: [Int]? var deleted, active: Bool? var status: String? var interventionSchoolMappings, mappedProgramHeads: JSONNull? init(id: Int?, incrementor: JSONNull?, interventionId: String?, interventionName: String?, interventionLevels: [String]?, beneficiaryIds: [Int]?, deleted: Bool?, active: Bool?, status: String?, interventionSchoolMappings: JSONNull?, mappedProgramHeads: JSONNull?) { self.id = id self.incrementor = incrementor self.interventionId = interventionId self.interventionName = interventionName self.interventionLevels = interventionLevels self.beneficiaryIds = beneficiaryIds self.deleted = deleted self.active = active self.status = status self.interventionSchoolMappings = interventionSchoolMappings self.mappedProgramHeads = mappedProgramHeads } } // MARK: - Level class SessionListLevel: Codable { var id, interventionTableId: Int? var interventionLevels: String? init(id: Int?, interventionTableId: Int?, interventionLevels: String?) { self.id = id self.interventionTableId = interventionTableId self.interventionLevels = interventionLevels } } // MARK: - SchoolDTO class SessionListSchoolDTO: Codable { var schoolId, schoolName, state, city: String? var pincode: Int? var active, deleted: Bool? var status: String? init(schoolId: String?, schoolName: String?, state: String?, city: String?, pincode: Int?, active: Bool?, deleted: Bool?, status: String?) { self.schoolId = schoolId self.schoolName = schoolName self.state = state self.city = city self.pincode = pincode self.active = active self.deleted = deleted self.status = status } }