WalletStatement
public struct WalletStatement : Codable, Sendable
The wallet statement model.
-
The total debit amount to the wallet in the currency of the transaction, defined in cents.
Declaration
Swift
public let amount: Int
-
Details of a transaction entity in Account Wallet’s. Used for statement purposes.
Declaration
Swift
public let transactions: [WalletStatementTransaction]
-
Creates a new instance by decoding from the given decoder.
Declaration
Swift
public init(from decoder: any Decoder) throws
Parameters
decoder
The decoder to read data from.