CurrencyCode

public enum CurrencyCode : String, Codable

ISO-4217 3-alpha character code of payment currency.

  • rub

    The Russian ruble or rouble is the currency of the Russian Federation.

    Declaration

    Swift

    case rub = "RUB"
  • usd

    The United States dollar is the official currency of the United States.

    Declaration

    Swift

    case usd = "USD"
  • eur

    The euro is the official currency of the European Union.

    Declaration

    Swift

    case eur = "EUR"
  • Depending on the currency, returns a currency symbol.

    Declaration

    Swift

    var currencySymbol: Character { get }