// // BatchListModel.swift // LMS // // Created by Suraj Kumar Mandal on 05/09/22. // // let batchList = try? newJSONDecoder().decode(BatchList.self, from: jsonData) import Foundation // MARK: - BatchListModel class BatchListModel: 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: BatchInterventionDTO? var schoolDTO: BatchSchoolDTO? var batachUserDtos: [BatachUserDto]? var level: BatchLevel? 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: BatchInterventionDTO?, schoolDTO: BatchSchoolDTO?, batachUserDtos: [BatachUserDto]?, level: BatchLevel?) { 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 BatachUserDto: Codable { var userDto: BatchUserDto? var standard, division: String? var grade: JSONNull? init(userDto: BatchUserDto?, standard: String?, division: String?, grade: JSONNull?) { self.userDto = userDto self.standard = standard self.division = division self.grade = grade } } // MARK: - UserDto class BatchUserDto: Codable { var id: Int? var name: String? var middleName: String? var lastName, username, email, mobile: String? var schoolName: JSONNull? var userType: BatchUserType? var keycloakUserId: String? var enable: Bool? var intervantions: [Int]? init(id: Int?, name: String?, middleName: String?, lastName: String?, username: String?, email: String?, mobile: String?, schoolName: JSONNull?, userType: BatchUserType?, 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.schoolName = schoolName self.userType = userType self.keycloakUserId = keycloakUserId self.enable = enable self.intervantions = intervantions } } // MARK: - UserType class BatchUserType: 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: - InterventionDTO class BatchInterventionDTO: Codable { var id, incrementor: Int? 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: Int?, 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 BatchLevel: 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 BatchSchoolDTO: Codable { var schoolId, schoolName, state, city: String? var pincode: Int? var active, deleted: Bool? var status: JSONNull? init(schoolId: String?, schoolName: String?, state: String?, city: String?, pincode: Int?, active: Bool?, deleted: Bool?, status: JSONNull?) { self.schoolId = schoolId self.schoolName = schoolName self.state = state self.city = city self.pincode = pincode self.active = active self.deleted = deleted self.status = status } }