ScheduledTransactionDetail
public struct ScheduledTransactionDetail : Codable, Equatable
Full details of a scheduled transaction
-
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 accountName: 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?
-
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
-
Sub transactions associated with this transaction
Declaration
Swift
public let subtransactions: [ScheduledSubTransaction]