// // FDSTDRDetailsModel.swift // Product Calculator // // Created by Suraj Kumar Mandal on 21/11/21. // import Foundation // MARK: - FDTDRDetails class FDSTDRDetailsModel { var depositDate, maturityDate : String? var term : Int? var depositAmount, annualInterest, compundFreq, maturityAmount, interestReceived, totalInterestReceived : Double? var bankFdStdrLookupList = [FDSTDRLookupList]() init(depositDate:String, maturityDate:String, term:Int, depositAmount:Double, annualInterest:Double, compundFreq:Double, maturityAmount:Double, interestReceived:Double, totalInterestReceived:Double) { self.depositDate = depositDate self.maturityDate = maturityDate self.term = term self.depositAmount = depositAmount self.annualInterest = annualInterest self.compundFreq = compundFreq self.maturityAmount = maturityAmount self.interestReceived = interestReceived self.totalInterestReceived = totalInterestReceived } } class FDSTDRLookupList { let serialNo, daysToMaturity : Int? let referenceDate, referenceMonth, financialYear : String? let openingBal, amountDeposited, interestAccrued, totalInterestReceived, interestCredited, closingBalance : Double? init(serialNo:Int, openingBal:Double, amountDeposited:Double, interestAccrued:Double, totalInterestReceived:Double, interestCredited:Double, daysToMaturity:Int, referenceDate:String, referenceMonth:String, financialYear:String, closingBalance:Double) { self.serialNo = serialNo self.openingBal = openingBal self.amountDeposited = amountDeposited self.interestAccrued = interestAccrued self.interestCredited = interestCredited self.totalInterestReceived = totalInterestReceived self.daysToMaturity = daysToMaturity self.referenceDate = referenceDate self.referenceMonth = referenceMonth self.financialYear = financialYear self.closingBalance = closingBalance } }