MonthSummary
public struct MonthSummary : Codable, Equatable
Month summary model
-
Month
Declaration
Swift
public let month: String
-
Note
Declaration
Swift
public let note: String?
-
Amount of income for the month
Declaration
Swift
public let income: Int?
-
Budgeted amount for the month
Declaration
Swift
public let budgeted: Int?
-
Activity for the month
Declaration
Swift
public let activity: Int?
-
Amount available to be budgeted for the month
Declaration
Swift
public let toBeBudgeted: Int?
-
Age of money
Declaration
Swift
public let ageOfMoney: Int?
-
Whether or not the month is deleted
Declaration
Swift
public let deleted: Bool