SessionListModel.swift 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. //
  2. // SessionListModel.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 19/09/22.
  6. //
  7. import Foundation
  8. // MARK: - SessionListModel
  9. class SessionListModel: Codable {
  10. var id, scheduleId, userId: Int?
  11. var date, startTime, endTime: String?
  12. var linkCreated: Bool?
  13. var link: String?
  14. var batch: SessionListBatch?
  15. var scheduleTitle, schedulePlace, status, workFlowStatus: String?
  16. var eventNo: Int?
  17. var notes: JSONNull?
  18. var offline: Bool?
  19. var batchName: String?
  20. var schoolName: String?
  21. var interventionName: String?
  22. var interventionLevelName: String?
  23. var teacherFirstName: String?
  24. var teacherLastName: String?
  25. var interventionId: Int?
  26. var interventionLevelId: Int?
  27. var batchId: Int?
  28. var schoolId: String?
  29. 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?) {
  30. self.id = id
  31. self.scheduleId = scheduleId
  32. self.userId = userId
  33. self.date = date
  34. self.startTime = startTime
  35. self.endTime = endTime
  36. self.linkCreated = linkCreated
  37. self.link = link
  38. self.batch = batch
  39. self.scheduleTitle = scheduleTitle
  40. self.schedulePlace = schedulePlace
  41. self.status = status
  42. self.workFlowStatus = workFlowStatus
  43. self.eventNo = eventNo
  44. self.notes = notes
  45. self.offline = offline
  46. self.batchName = batchName
  47. self.schoolName = schoolName
  48. self.interventionName = interventionName
  49. self.interventionLevelName = interventionLevelName
  50. self.teacherFirstName = teacherFirstName
  51. self.teacherLastName = teacherLastName
  52. self.interventionId = interventionId
  53. self.interventionLevelId = interventionLevelId
  54. self.batchId = batchId
  55. self.schoolId = schoolId
  56. }
  57. }
  58. // MARK: - Batch
  59. class SessionListBatch: Codable {
  60. var viewBatchRS: SessionListViewBatchRS?
  61. var teacher: SessionListTeacher?
  62. var comments: String?
  63. var substituteTeachers: [SessionListTeacher]?
  64. var status: String?
  65. var id: Int?
  66. init(viewBatchRS: SessionListViewBatchRS?, teacher: SessionListTeacher?, comments: String?, substituteTeachers: [SessionListTeacher]?, status: String?, id: Int?) {
  67. self.viewBatchRS = viewBatchRS
  68. self.teacher = teacher
  69. self.comments = comments
  70. self.substituteTeachers = substituteTeachers
  71. self.status = status
  72. self.id = id
  73. }
  74. }
  75. // MARK: - Teacher
  76. class SessionListTeacher: Codable {
  77. var id: Int?
  78. var name: String?
  79. var middleName: String?
  80. var lastName, username, email, mobile: String?
  81. var userType: SessionListUserType?
  82. var keycloakUserId: String?
  83. var enable: Bool?
  84. var intervantions: [Int]?
  85. init(id: Int?, name: String?, middleName: String?, lastName: String?, username: String?, email: String?, mobile: String?, userType: SessionListUserType?, keycloakUserId: String?, enable: Bool?, intervantions: [Int]?) {
  86. self.id = id
  87. self.name = name
  88. self.middleName = middleName
  89. self.lastName = lastName
  90. self.username = username
  91. self.email = email
  92. self.mobile = mobile
  93. self.userType = userType
  94. self.keycloakUserId = keycloakUserId
  95. self.enable = enable
  96. self.intervantions = intervantions
  97. }
  98. }
  99. // MARK: - UserType
  100. class SessionListUserType: Codable {
  101. var id: Int?
  102. var actor, parentActor, discription, defaultRealmRole: String?
  103. var createAccess, deleteAccess, editAccess, viewAccess: String?
  104. var appUrl: String?
  105. init(id: Int?, actor: String?, parentActor: String?, discription: String?, defaultRealmRole: String?, createAccess: String?, deleteAccess: String?, editAccess: String?, viewAccess: String?, appUrl: String?) {
  106. self.id = id
  107. self.actor = actor
  108. self.parentActor = parentActor
  109. self.discription = discription
  110. self.defaultRealmRole = defaultRealmRole
  111. self.createAccess = createAccess
  112. self.deleteAccess = deleteAccess
  113. self.editAccess = editAccess
  114. self.viewAccess = viewAccess
  115. self.appUrl = appUrl
  116. }
  117. }
  118. // MARK: - ViewBatchRS
  119. class SessionListViewBatchRS: Codable {
  120. var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String?
  121. var id: Int?
  122. var academicYear, batchName: String?
  123. var studentBatch, deleted, active: Bool?
  124. var status, comments: String?
  125. var interventionDTO: SessionListInterventionDTO?
  126. var schoolDTO: SessionListSchoolDTO?
  127. var batachUserDtos: [SessionListBatachUserDto]?
  128. var level: SessionListLevel?
  129. 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?) {
  130. self.createdBy = createdBy
  131. self.createdDate = createdDate
  132. self.lastModifiedBy = lastModifiedBy
  133. self.lastModifiedDate = lastModifiedDate
  134. self.id = id
  135. self.academicYear = academicYear
  136. self.batchName = batchName
  137. self.studentBatch = studentBatch
  138. self.deleted = deleted
  139. self.active = active
  140. self.status = status
  141. self.comments = comments
  142. self.interventionDTO = interventionDTO
  143. self.schoolDTO = schoolDTO
  144. self.batachUserDtos = batachUserDtos
  145. self.level = level
  146. }
  147. }
  148. // MARK: - BatachUserDto
  149. class SessionListBatachUserDto: Codable {
  150. var userDto: Teacher?
  151. var standard, division, grade: String?
  152. init(userDto: Teacher?, standard: String?, division: String?, grade: String?) {
  153. self.userDto = userDto
  154. self.standard = standard
  155. self.division = division
  156. self.grade = grade
  157. }
  158. }
  159. // MARK: - InterventionDTO
  160. class SessionListInterventionDTO: Codable {
  161. var id: Int?
  162. var incrementor: JSONNull?
  163. var interventionId, interventionName: String?
  164. var interventionLevels: [String]?
  165. var beneficiaryIds: [Int]?
  166. var deleted, active: Bool?
  167. var status: String?
  168. var interventionSchoolMappings, mappedProgramHeads: JSONNull?
  169. init(id: Int?, incrementor: JSONNull?, interventionId: String?, interventionName: String?, interventionLevels: [String]?, beneficiaryIds: [Int]?, deleted: Bool?, active: Bool?, status: String?, interventionSchoolMappings: JSONNull?, mappedProgramHeads: JSONNull?) {
  170. self.id = id
  171. self.incrementor = incrementor
  172. self.interventionId = interventionId
  173. self.interventionName = interventionName
  174. self.interventionLevels = interventionLevels
  175. self.beneficiaryIds = beneficiaryIds
  176. self.deleted = deleted
  177. self.active = active
  178. self.status = status
  179. self.interventionSchoolMappings = interventionSchoolMappings
  180. self.mappedProgramHeads = mappedProgramHeads
  181. }
  182. }
  183. // MARK: - Level
  184. class SessionListLevel: Codable {
  185. var id, interventionTableId: Int?
  186. var interventionLevels: String?
  187. init(id: Int?, interventionTableId: Int?, interventionLevels: String?) {
  188. self.id = id
  189. self.interventionTableId = interventionTableId
  190. self.interventionLevels = interventionLevels
  191. }
  192. }
  193. // MARK: - SchoolDTO
  194. class SessionListSchoolDTO: Codable {
  195. var schoolId, schoolName, state, city: String?
  196. var pincode: Int?
  197. var active, deleted: Bool?
  198. var status: String?
  199. init(schoolId: String?, schoolName: String?, state: String?, city: String?, pincode: Int?, active: Bool?, deleted: Bool?, status: String?) {
  200. self.schoolId = schoolId
  201. self.schoolName = schoolName
  202. self.state = state
  203. self.city = city
  204. self.pincode = pincode
  205. self.active = active
  206. self.deleted = deleted
  207. self.status = status
  208. }
  209. }