SessionInterventionModel.swift 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. //
  2. // SessionInterventionModel.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 05/09/22.
  6. //
  7. // let interventionList = try? newJSONDecoder().decode(InterventionList.self, from: jsonData)
  8. import Foundation
  9. // MARK: - SessionInterventionModel
  10. class SessionInterventionModel: Codable {
  11. var id, incrementor: Int?
  12. var interventionId, interventionName: String?
  13. var interventionLevels: [String]?
  14. var beneficiaryIds: [Int]?
  15. var deleted, active: Bool?
  16. var status: String?
  17. var interventionSchoolMappings: [InterventionSchoolMapping]?
  18. var mappedProgramHeads: [MappedProgramHead]?
  19. init(id: Int?, incrementor: Int?, interventionId: String?, interventionName: String?, interventionLevels: [String]?, beneficiaryIds: [Int]?, deleted: Bool?, active: Bool?, status: String?, interventionSchoolMappings: [InterventionSchoolMapping]?, mappedProgramHeads: [MappedProgramHead]?) {
  20. self.id = id
  21. self.incrementor = incrementor
  22. self.interventionId = interventionId
  23. self.interventionName = interventionName
  24. self.interventionLevels = interventionLevels
  25. self.beneficiaryIds = beneficiaryIds
  26. self.deleted = deleted
  27. self.active = active
  28. self.status = status
  29. self.interventionSchoolMappings = interventionSchoolMappings
  30. self.mappedProgramHeads = mappedProgramHeads
  31. }
  32. }
  33. // MARK: - InterventionSchoolMapping
  34. class InterventionSchoolMapping: Codable {
  35. var id, interventionTableId: Int?
  36. var schoolMasterTableId: String?
  37. var deleted, active: Bool?
  38. var status: String?
  39. var interventionEntity: SessionInterventionModel?
  40. var schoolMasterDTO: JSONNull?
  41. init(id: Int?, interventionTableId: Int?, schoolMasterTableId: String?, deleted: Bool?, active: Bool?, status: String?, interventionEntity: SessionInterventionModel?, schoolMasterDTO: JSONNull?) {
  42. self.id = id
  43. self.interventionTableId = interventionTableId
  44. self.schoolMasterTableId = schoolMasterTableId
  45. self.deleted = deleted
  46. self.active = active
  47. self.status = status
  48. self.interventionEntity = interventionEntity
  49. self.schoolMasterDTO = schoolMasterDTO
  50. }
  51. }
  52. // MARK: - MappedProgramHead
  53. class MappedProgramHead: Codable {
  54. var id: Int?
  55. var userType: JSONNull?
  56. var phName: String?
  57. var phLastName: JSONNull?
  58. var phEmail, phMobile: String?
  59. var userId, phEmployeeId: JSONNull?
  60. var deleted, active: Bool?
  61. var status: String?
  62. var interventionIds: [JSONAny]?
  63. init(id: Int?, userType: JSONNull?, phName: String?, phLastName: JSONNull?, phEmail: String?, phMobile: String?, userId: JSONNull?, phEmployeeId: JSONNull?, deleted: Bool?, active: Bool?, status: String?, interventionIds: [JSONAny]?) {
  64. self.id = id
  65. self.userType = userType
  66. self.phName = phName
  67. self.phLastName = phLastName
  68. self.phEmail = phEmail
  69. self.phMobile = phMobile
  70. self.userId = userId
  71. self.phEmployeeId = phEmployeeId
  72. self.deleted = deleted
  73. self.active = active
  74. self.status = status
  75. self.interventionIds = interventionIds
  76. }
  77. }