ScheduledTransactionSummary

public struct ScheduledTransactionSummary : Codable, Equatable

Summary of a scheduled transaction

  • id

    Transaction id

    Declaration

    Swift

    public let id: String
  • First occurence of this transaction

    Declaration

    Swift

    public let dateFirst: String
  • Date of next occurrence

    Declaration

    Swift

    public let dateNext: String
  • How often the transaction happens

    Declaration

    Swift

    public let frequency: String
  • Amount of the transaction in milliunits

    Declaration

    Swift

    public let amount: Int
  • Transaction memo

    Declaration

    Swift

    public let memo: String?
  • Flag color

    Declaration

    Swift

    public let flagColor: String?
  • Account id

    Declaration

    Swift

    public let accountId: String
  • Account name

    Declaration

    Swift

    public let payeeId: String
  • Category id

    Declaration

    Swift

    public let categoryId: String?
  • If it’s a transfer transaction, the transfer account id

    Declaration

    Swift

    public let transferAccountId: String?
  • Whether or not the transaction has been deleted

    Declaration

    Swift

    public let deleted: Bool