SubTransaction
public struct SubTransaction : Codable, Equatable, Sendable
Subtransaction model
-
Sub transaction id
Declaration
Swift
public let id: String -
Id of the transaction this sub transaction belongs to
Declaration
Swift
public let transactionId: String -
Amount of the transaction in milliunits
Declaration
Swift
public let amount: Int -
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? -
If it’s a transfer transaction, the transfer account id
Declaration
Swift
public let transferAccountId: String? -
If a transfer, the id of transaction on the other side of the transfer
Declaration
Swift
public let transferTransactionId: String? -
Whether or not the transaction has been deleted
Declaration
Swift
public let deleted: Bool
View on GitHub