BatchListModel.swift 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. //
  2. // BatchListModel.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 05/09/22.
  6. //
  7. // let batchList = try? newJSONDecoder().decode(BatchList.self, from: jsonData)
  8. import Foundation
  9. // MARK: - BatchListModel
  10. class BatchListModel: Codable {
  11. var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String?
  12. var id: Int?
  13. var academicYear, batchName: String?
  14. var studentBatch, deleted, active: Bool?
  15. var status, comments: String?
  16. var interventionDTO: BatchInterventionDTO?
  17. var schoolDTO: BatchSchoolDTO?
  18. var batachUserDtos: [BatachUserDto]?
  19. var level: BatchLevel?
  20. 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?) {
  21. self.createdBy = createdBy
  22. self.createdDate = createdDate
  23. self.lastModifiedBy = lastModifiedBy
  24. self.lastModifiedDate = lastModifiedDate
  25. self.id = id
  26. self.academicYear = academicYear
  27. self.batchName = batchName
  28. self.studentBatch = studentBatch
  29. self.deleted = deleted
  30. self.active = active
  31. self.status = status
  32. self.comments = comments
  33. self.interventionDTO = interventionDTO
  34. self.schoolDTO = schoolDTO
  35. self.batachUserDtos = batachUserDtos
  36. self.level = level
  37. }
  38. }
  39. // MARK: - BatachUserDto
  40. class BatachUserDto: Codable {
  41. var userDto: BatchUserDto?
  42. var standard, division: String?
  43. var grade: JSONNull?
  44. init(userDto: BatchUserDto?, standard: String?, division: String?, grade: JSONNull?) {
  45. self.userDto = userDto
  46. self.standard = standard
  47. self.division = division
  48. self.grade = grade
  49. }
  50. }
  51. // MARK: - UserDto
  52. class BatchUserDto: Codable {
  53. var id: Int?
  54. var name: String?
  55. var middleName: String?
  56. var lastName, username, email, mobile: String?
  57. var schoolName: JSONNull?
  58. var userType: BatchUserType?
  59. var keycloakUserId: String?
  60. var enable: Bool?
  61. var intervantions: [Int]?
  62. 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]?) {
  63. self.id = id
  64. self.name = name
  65. self.middleName = middleName
  66. self.lastName = lastName
  67. self.username = username
  68. self.email = email
  69. self.mobile = mobile
  70. self.schoolName = schoolName
  71. self.userType = userType
  72. self.keycloakUserId = keycloakUserId
  73. self.enable = enable
  74. self.intervantions = intervantions
  75. }
  76. }
  77. // MARK: - UserType
  78. class BatchUserType: Codable {
  79. var id: Int?
  80. var actor, parentActor, discription, defaultRealmRole: String?
  81. var createAccess, deleteAccess, editAccess, viewAccess: String?
  82. var appUrl: String?
  83. init(id: Int?, actor: String?, parentActor: String?, discription: String?, defaultRealmRole: String?, createAccess: String?, deleteAccess: String?, editAccess: String?, viewAccess: String?, appUrl: String?) {
  84. self.id = id
  85. self.actor = actor
  86. self.parentActor = parentActor
  87. self.discription = discription
  88. self.defaultRealmRole = defaultRealmRole
  89. self.createAccess = createAccess
  90. self.deleteAccess = deleteAccess
  91. self.editAccess = editAccess
  92. self.viewAccess = viewAccess
  93. self.appUrl = appUrl
  94. }
  95. }
  96. // MARK: - InterventionDTO
  97. class BatchInterventionDTO: Codable {
  98. var id, incrementor: Int?
  99. var interventionId, interventionName: String?
  100. var interventionLevels: [String]?
  101. var beneficiaryIds: [Int]?
  102. var deleted, active: Bool?
  103. var status: String?
  104. var interventionSchoolMappings, mappedProgramHeads: JSONNull?
  105. init(id: Int?, incrementor: Int?, interventionId: String?, interventionName: String?, interventionLevels: [String]?, beneficiaryIds: [Int]?, deleted: Bool?, active: Bool?, status: String?, interventionSchoolMappings: JSONNull?, mappedProgramHeads: JSONNull?) {
  106. self.id = id
  107. self.incrementor = incrementor
  108. self.interventionId = interventionId
  109. self.interventionName = interventionName
  110. self.interventionLevels = interventionLevels
  111. self.beneficiaryIds = beneficiaryIds
  112. self.deleted = deleted
  113. self.active = active
  114. self.status = status
  115. self.interventionSchoolMappings = interventionSchoolMappings
  116. self.mappedProgramHeads = mappedProgramHeads
  117. }
  118. }
  119. // MARK: - Level
  120. class BatchLevel: Codable {
  121. var id, interventionTableId: Int?
  122. var interventionLevels: String?
  123. init(id: Int?, interventionTableId: Int?, interventionLevels: String?) {
  124. self.id = id
  125. self.interventionTableId = interventionTableId
  126. self.interventionLevels = interventionLevels
  127. }
  128. }
  129. // MARK: - SchoolDTO
  130. class BatchSchoolDTO: Codable {
  131. var schoolId, schoolName, state, city: String?
  132. var pincode: Int?
  133. var active, deleted: Bool?
  134. var status: JSONNull?
  135. init(schoolId: String?, schoolName: String?, state: String?, city: String?, pincode: Int?, active: Bool?, deleted: Bool?, status: JSONNull?) {
  136. self.schoolId = schoolId
  137. self.schoolName = schoolName
  138. self.state = state
  139. self.city = city
  140. self.pincode = pincode
  141. self.active = active
  142. self.deleted = deleted
  143. self.status = status
  144. }
  145. }