MonthSummary
public struct MonthSummary : Codable, Equatable, Sendable
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 -
Amount of income for the month formatted in the plan currency
Declaration
Swift
public let incomeFormatted: String? -
Amount of income for the month as a decimal currency amount
Declaration
Swift
public let incomeCurrency: Decimal? -
Budgeted amount for the month
Declaration
Swift
public let budgeted: Int -
Budgeted amount for the month formatted in the plan currency
Declaration
Swift
public let budgetedFormatted: String? -
Budgeted amount for the month as a decimal currency amount
Declaration
Swift
public let budgetedCurrency: Decimal? -
Activity for the month
Declaration
Swift
public let activity: Int -
Activity for the month formatted in the plan currency
Declaration
Swift
public let activityFormatted: String? -
Activity for the month as a decimal currency amount
Declaration
Swift
public let activityCurrency: Decimal? -
Amount available to be budgeted for the month
Declaration
Swift
public let toBeBudgeted: Int -
Amount available to be budgeted for the month formatted in the plan currency
Declaration
Swift
public let toBeBudgetedFormatted: String? -
Amount available to be budgeted for the month as a decimal currency amount
Declaration
Swift
public let toBeBudgetedCurrency: Decimal? -
Age of money
Declaration
Swift
public let ageOfMoney: Int? -
Whether or not the month is deleted
Declaration
Swift
public let deleted: Bool -
init(month:note: income: incomeFormatted: incomeCurrency: budgeted: budgetedFormatted: budgetedCurrency: activity: activityFormatted: activityCurrency: toBeBudgeted: toBeBudgetedFormatted: toBeBudgetedCurrency: ageOfMoney: deleted: ) Undocumented
Declaration
Swift
public init( month: String, note: String?, income: Int, incomeFormatted: String?, incomeCurrency: Decimal?, budgeted: Int, budgetedFormatted: String?, budgetedCurrency: Decimal?, activity: Int, activityFormatted: String?, activityCurrency: Decimal?, toBeBudgeted: Int, toBeBudgetedFormatted: String?, toBeBudgetedCurrency: Decimal?, ageOfMoney: Int?, deleted: Bool )
View on GitHub