HyperwalletReceipt
public struct HyperwalletReceipt : Decodable, Equatable
Representation of the Hyperwallet’s receipt.
-
The gross amount of the transaction.
Declaration
Swift
public let amount: String? -
The datetime the transaction was created on in ISO 8601 format ‘YYYY-MM-DDThh:mm:ss’ (UTC timezone)
Declaration
Swift
public let createdOn: String? -
The 3-letter currency code for the transaction.
Declaration
Swift
public let currency: String? -
A token identifying where the funds were sent.
Declaration
Swift
public let destinationToken: String? -
Details of the transaction.
Declaration
Swift
public let details: HyperwalletReceiptDetails? -
The type of transaction.
Declaration
Swift
public let entry: HyperwalletEntryType? -
The fee amount.
Declaration
Swift
public let fee: String? -
The 3-letter currency code for the foreign exchange.
Declaration
Swift
public let foreignExchangeCurrency: String? -
The foreign exchange rate.
Declaration
Swift
public let foreignExchangeRate: String? -
The journal entry number for the transaction.
Declaration
Swift
public let journalId: String? -
A token identifying the source of funds.
Declaration
Swift
public let sourceToken: String? -
The transaction type.
Declaration
Swift
public let type: HyperwalletReceiptType? -
Declaration
Swift
public static func == (lhs: HyperwalletReceipt, rhs: HyperwalletReceipt) -> Bool -
The transaction type.
See moreDeclaration
Swift
public enum HyperwalletReceiptType : String, Decodable -
The entry type.
See moreDeclaration
Swift
public enum HyperwalletEntryType : String, Decodable
View on GitHub