MoneyMovementGroup

public struct MoneyMovementGroup : Codable, Equatable, Sendable

Represents a group of money movements

  • id

    Money movement group id in UUID format

    Declaration

    Swift

    public let id: String
  • When the money movement group was created

    Declaration

    Swift

    public let groupCreatedAt: String
  • The month of the money movement group in ISO format (e.g. 2024-01-01)

    Declaration

    Swift

    public let month: String
  • Optional note

    Declaration

    Swift

    public let note: String?
  • The id of the user who performed the money movement group

    Declaration

    Swift

    public let performedByUserId: String?
  • Undocumented

    Declaration

    Swift

    public init(
        id: String,
        groupCreatedAt: String,
        month: String,
        note: String?,
        performedByUserId: String?
    )