Total
public class Total : CustomStringConvertible
Contains information about the total for one currency. Immutable class.
-
Number of transactions.
Declaration
Swift
public private(set) var count: Int { get }
-
Total amount per currency.
Declaration
Swift
public private(set) var amountSum: Amount { get }
-
Total amount per currency.
Declaration
Swift
public private(set) var amountSumTip: Amount? { get }
-
Total amount per currency.
Declaration
Swift
public private(set) var amountSumOther: Amount? { get }
-
List of transaction details.
Declaration
Swift
public private(set) var trxDetails: [TrxDetail] { get }
-
Currency.
Declaration
Swift
public private(set) var currency: CCurrency { get }
-
Exponent.
Declaration
Swift
public private(set) var exponent: Int { get }
-
Textual representation.
Declaration
Swift
public var description: String { get }