ScheduledSubTransaction

public struct ScheduledSubTransaction : Codable, Equatable, Sendable

Scheduled sub transaction

  • id

    Transaction id

    Declaration

    Swift

    public let id: String
  • Id of the scheduled transaction this sub transaction belongs to

    Declaration

    Swift

    public let scheduledTransactionId: String
  • Transaction amount

    Declaration

    Swift

    public let amount: Int
  • Transaction amount formatted in the plan currency

    Declaration

    Swift

    public let amountFormatted: String?
  • Transaction amount as a decimal currency amount

    Declaration

    Swift

    public let amountCurrency: Decimal?
  • Transaction memo

    Declaration

    Swift

    public let memo: String?
  • Payee id

    Declaration

    Swift

    public let payeeId: String?
  • Payee name

    Declaration

    Swift

    public let payeeName: String?
  • Category id

    Declaration

    Swift

    public let categoryId: String?
  • Category name

    Declaration

    Swift

    public let categoryName: String?
  • Transfer account id

    Declaration

    Swift

    public let transferAccountId: String?
  • Whether or not the account is deleted

    Declaration

    Swift

    public let deleted: Bool
  • Undocumented

    Declaration

    Swift

    public init(
        id: String,
        scheduledTransactionId: String,
        amount: Int,
        amountFormatted: String?,
        amountCurrency: Decimal?,
        memo: String?,
        payeeId: String?,
        payeeName: String?,
        categoryId: String?,
        categoryName: String?,
        transferAccountId: String?,
        deleted: Bool
    )