LessonListModel.swift 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //
  2. // LessonListModel.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 06/09/22.
  6. //
  7. // let lessonListModel = try? newJSONDecoder().decode(LessonListModel.self, from: jsonData)
  8. import Foundation
  9. // MARK: - LessonListModel
  10. class LessonListModel: Codable {
  11. var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String?
  12. var id, lessonId: Int?
  13. var name: String?
  14. var contentIndex: Int?
  15. var type, fileId: String?
  16. var teacherAccess, beneficiaryAccess: Bool?
  17. var status, comments: String?
  18. var lesson: Lesson?
  19. var source: String?
  20. init(createdBy: String?, createdDate: String?, lastModifiedBy: String?, lastModifiedDate: String?, id: Int?, lessonId: Int?, name: String?, contentIndex: Int?, type: String?, fileId: String?, teacherAccess: Bool?, beneficiaryAccess: Bool?, status: String?, comments: String?, lesson: Lesson?, source: String?) {
  21. self.createdBy = createdBy
  22. self.createdDate = createdDate
  23. self.lastModifiedBy = lastModifiedBy
  24. self.lastModifiedDate = lastModifiedDate
  25. self.id = id
  26. self.lessonId = lessonId
  27. self.name = name
  28. self.contentIndex = contentIndex
  29. self.type = type
  30. self.fileId = fileId
  31. self.teacherAccess = teacherAccess
  32. self.beneficiaryAccess = beneficiaryAccess
  33. self.status = status
  34. self.comments = comments
  35. self.lesson = lesson
  36. self.source = source
  37. }
  38. }
  39. // MARK: - Lesson
  40. class Lesson: Codable {
  41. var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String?
  42. var id: Int?
  43. var name, status, comments: String?
  44. var unit: LessonListUnit?
  45. init(createdBy: String?, createdDate: String?, lastModifiedBy: String?, lastModifiedDate: String?, id: Int?, name: String?, status: String?, comments: String?, unit: LessonListUnit?) {
  46. self.createdBy = createdBy
  47. self.createdDate = createdDate
  48. self.lastModifiedBy = lastModifiedBy
  49. self.lastModifiedDate = lastModifiedDate
  50. self.id = id
  51. self.name = name
  52. self.status = status
  53. self.comments = comments
  54. self.unit = unit
  55. }
  56. }
  57. // MARK: - Unit
  58. class LessonListUnit: Codable {
  59. var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String?
  60. var id: Int?
  61. var academicYear, name, status: String?
  62. var intervention: LessonListIntervention?
  63. var level: LessonListLevel?
  64. var comments: String?
  65. init(createdBy: String?, createdDate: String?, lastModifiedBy: String?, lastModifiedDate: String?, id: Int?, academicYear: String?, name: String?, status: String?, intervention: LessonListIntervention?, level: LessonListLevel?, comments: String?) {
  66. self.createdBy = createdBy
  67. self.createdDate = createdDate
  68. self.lastModifiedBy = lastModifiedBy
  69. self.lastModifiedDate = lastModifiedDate
  70. self.id = id
  71. self.academicYear = academicYear
  72. self.name = name
  73. self.status = status
  74. self.intervention = intervention
  75. self.level = level
  76. self.comments = comments
  77. }
  78. }
  79. // MARK: - Intervention
  80. class LessonListIntervention: Codable {
  81. var id, incrementor: Int?
  82. var interventionId, interventionName: String?
  83. var interventionLevels: [String]?
  84. var beneficiaryIds: [Int]?
  85. var deleted, active: Bool?
  86. var status: String?
  87. var interventionSchoolMappings, mappedProgramHeads: JSONNull?
  88. init(id: Int?, incrementor: Int?, interventionId: String?, interventionName: String?, interventionLevels: [String]?, beneficiaryIds: [Int]?, deleted: Bool?, active: Bool?, status: String?, interventionSchoolMappings: JSONNull?, mappedProgramHeads: JSONNull?) {
  89. self.id = id
  90. self.incrementor = incrementor
  91. self.interventionId = interventionId
  92. self.interventionName = interventionName
  93. self.interventionLevels = interventionLevels
  94. self.beneficiaryIds = beneficiaryIds
  95. self.deleted = deleted
  96. self.active = active
  97. self.status = status
  98. self.interventionSchoolMappings = interventionSchoolMappings
  99. self.mappedProgramHeads = mappedProgramHeads
  100. }
  101. }
  102. // MARK: - Level
  103. class LessonListLevel: Codable {
  104. var id, interventionTableId: Int?
  105. var interventionLevels: String?
  106. init(id: Int?, interventionTableId: Int?, interventionLevels: String?) {
  107. self.id = id
  108. self.interventionTableId = interventionTableId
  109. self.interventionLevels = interventionLevels
  110. }
  111. }