CurrencyItem
public class CurrencyItem : CustomStringConvertible
Contains information about a currency supported by a brand. Immutable class.
-
Create currency item.
Declaration
Swift
public init(currency: CCurrency, type: CCurrencyType)
-
Supported or used currency.
Declaration
Swift
public private(set) var currency: CCurrency
-
Type of currency.
Declaration
Swift
public private(set) var type: CCurrencyType
-
String representation for debugging purpose.
Declaration
Swift
public var description: String { get }