CategoryGroupWithCategories

public struct CategoryGroupWithCategories : Codable, Equatable, Sendable

Category group including categories

  • id

    Category group id

    Declaration

    Swift

    public let id: String
  • Category name

    Declaration

    Swift

    public let name: String
  • Whether or not the category group is hidden

    Declaration

    Swift

    public let hidden: Bool
  • Whether or not the category group has been deleted. Deleted category groups will only be included in delta requests.

    Declaration

    Swift

    public let deleted: Bool
  • Categories belonging to this group. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).

    Declaration

    Swift

    public let categories: [Category]