FDTDRDetailsModel.swift 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. //
  2. // FDTDRDetails.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 17/11/21.
  6. //
  7. import Foundation
  8. // MARK: - FDTDRDetails
  9. struct FDTDRDetails: Codable {
  10. let maturityDate, maturityDisplayDate : String?
  11. let interestReceived, totalInterestReceived : Int?
  12. let bankFdTdrLookupList: [FDTDRLookupList]?
  13. enum CodingKeys: String, CodingKey {
  14. case maturityDate = "maturityDate"
  15. case maturityDisplayDate = "maturityDisplayDate"
  16. case interestReceived = "interestReceived"
  17. case totalInterestReceived = "totalInterestReceived"
  18. case bankFdTdrLookupList = "bankFdTdrLookupList"
  19. }
  20. }
  21. // MARK: FDTDRDetails convenience initializers and mutators
  22. extension FDTDRDetails {
  23. init(data: Data) throws {
  24. self = try newJSONDecoder().decode(FDTDRDetails.self, from: data)
  25. }
  26. init(_ json: String, using encoding: String.Encoding = .utf8) throws {
  27. guard let data = json.data(using: encoding) else {
  28. throw NSError(domain: "JSONDecoding", code: 0, userInfo: nil)
  29. }
  30. try self.init(data: data)
  31. }
  32. init(fromURL url: URL) throws {
  33. try self.init(data: try Data(contentsOf: url))
  34. }
  35. func with(
  36. maturityDate: String?? = nil,
  37. maturityDisplayDate: String?? = nil,
  38. interestReceived: Int?? = nil,
  39. totalInterestReceived: Int?? = nil,
  40. bankFdTdrLookupList: [FDTDRLookupList]?? = nil
  41. ) -> FDTDRDetails {
  42. return FDTDRDetails(
  43. maturityDate: maturityDate ?? self.maturityDate,
  44. maturityDisplayDate: maturityDisplayDate ?? self.maturityDisplayDate,
  45. interestReceived: interestReceived ?? self.interestReceived,
  46. totalInterestReceived: totalInterestReceived ?? self.totalInterestReceived,
  47. bankFdTdrLookupList: bankFdTdrLookupList ?? self.bankFdTdrLookupList
  48. )
  49. }
  50. func jsonData() throws -> Data {
  51. return try newJSONEncoder().encode(self)
  52. }
  53. func jsonString(encoding: String.Encoding = .utf8) throws -> String? {
  54. return String(data: try self.jsonData(), encoding: encoding)
  55. }
  56. }
  57. // MARK: - FDTDRLookupList
  58. struct FDTDRLookupList: Codable {
  59. let serialNo, amountDeposited, interestReceived, interestAccrued, totalInterestAccrued, daysToMaturity : Int?
  60. let referenceDate, referenceMonth, financialYear : String?
  61. enum CodingKeys: String, CodingKey {
  62. case serialNo = "serialNo"
  63. case amountDeposited = "amountDeposited"
  64. case interestReceived = "interestReceived"
  65. case interestAccrued = "interestAccrued"
  66. case totalInterestAccrued = "totalInterestAccrued"
  67. case daysToMaturity = "daysToMaturity"
  68. case referenceDate = "referenceDate"
  69. case referenceMonth = "referenceMonth"
  70. case financialYear = "financialYear"
  71. }
  72. }
  73. // MARK: FDTDRLookupList convenience initializers and mutators
  74. extension FDTDRLookupList {
  75. init(data: Data) throws {
  76. self = try newJSONDecoder().decode(FDTDRLookupList.self, from: data)
  77. }
  78. init(_ json: String, using encoding: String.Encoding = .utf8) throws {
  79. guard let data = json.data(using: encoding) else {
  80. throw NSError(domain: "JSONDecoding", code: 0, userInfo: nil)
  81. }
  82. try self.init(data: data)
  83. }
  84. init(fromURL url: URL) throws {
  85. try self.init(data: try Data(contentsOf: url))
  86. }
  87. func with(
  88. serialNo: Int?? = nil,
  89. amountDeposited: Int?? = nil,
  90. interestReceived: Int?? = nil,
  91. interestAccrued: Int?? = nil,
  92. totalInterestAccrued: Int?? = nil,
  93. daysToMaturity: Int?? = nil,
  94. referenceDate: String?? = nil,
  95. referenceMonth: String?? = nil,
  96. financialYear: String?? = nil
  97. ) -> FDTDRLookupList {
  98. return FDTDRLookupList(
  99. serialNo: serialNo ?? self.serialNo,
  100. amountDeposited: amountDeposited ?? self.amountDeposited,
  101. interestReceived: interestReceived ?? self.interestReceived,
  102. interestAccrued: interestAccrued ?? self.interestAccrued,
  103. totalInterestAccrued: totalInterestAccrued ?? self.totalInterestAccrued,
  104. daysToMaturity: daysToMaturity ?? self.daysToMaturity,
  105. referenceDate: referenceDate ?? self.referenceDate,
  106. referenceMonth: referenceMonth ?? self.referenceMonth,
  107. financialYear: financialYear ?? self.financialYear
  108. )
  109. }
  110. func jsonData() throws -> Data {
  111. return try newJSONEncoder().encode(self)
  112. }
  113. func jsonString(encoding: String.Encoding = .utf8) throws -> String? {
  114. return String(data: try self.jsonData(), encoding: encoding)
  115. }
  116. }
  117. // MARK: - Helper functions for creating encoders and decoders
  118. func newJSONDecoder() -> JSONDecoder {
  119. let decoder = JSONDecoder()
  120. if #available(iOS 10.0, OSX 10.12, tvOS 10.0, watchOS 3.0, *) {
  121. decoder.dateDecodingStrategy = .iso8601
  122. }
  123. return decoder
  124. }
  125. func newJSONEncoder() -> JSONEncoder {
  126. let encoder = JSONEncoder()
  127. if #available(iOS 10.0, OSX 10.12, tvOS 10.0, watchOS 3.0, *) {
  128. encoder.dateEncodingStrategy = .iso8601
  129. }
  130. return encoder
  131. }