MonthDetail
public struct MonthDetail : Codable, Equatable
Month detail model
-
Month
Declaration
Swift
public let month: String
-
Month note
Declaration
Swift
public let note: String?
-
Income amount for the month
Declaration
Swift
public let income: Int?
-
Amount budgeted for the month
Declaration
Swift
public let budgeted: Int?
-
Activity amount for the month
Declaration
Swift
public let activity: Int?
-
Available to be budgeted for the month
Declaration
Swift
public let toBeBudgeted: Int?
-
Age of money
Declaration
Swift
public let ageOfMoney: Int?
-
Wether or not the month is deleted
Declaration
Swift
public let deleted: Bool
-
Categories for the month
Declaration
Swift
public let categories: [Category]