Skip to main content
Enumeration
enum FiatCurrency

Operators

<(_:_:)

Inherited from Comparable.<(_:_:).
static func < (lhs: FiatCurrency, rhs: FiatCurrency) -> Bool

Enumeration Cases

FiatCurrency.aud

case aud

FiatCurrency.eur

case eur

FiatCurrency.gbp

case gbp

FiatCurrency.hkd

case hkd

FiatCurrency.inr

case inr

FiatCurrency.jpy

case jpy

FiatCurrency.krw

case krw

FiatCurrency.sgd

case sgd

FiatCurrency.unknown(_:)

case unknown(String)

FiatCurrency.usd

case usd

FiatCurrency.vnd

case vnd

Initializers

init(from:)

Inherited from Decodable.init(from:).
init(from decoder: any Decoder) throws

init(name:)

init(name: String)

Instance Properties

isPaymentEnabledFiatCurrency

var isPaymentEnabledFiatCurrency: Bool { get }

name

var name: String { get }

Instance Methods

contains(_:)

Inherited from RangeExpression.contains(_:).
func contains(_ element: FiatCurrency) -> Bool

encode(to:)

Inherited from Encodable.encode(to:).
func encode(to encoder: Encoder) throws

relative(to:)

Inherited from RangeExpression.relative(to:).
func relative<C>(to collection: C) -> Range<FiatCurrency> where C : Collection, C.Index == FiatCurrency

relative(to:)

func relative<C>(to collection: C) -> Range<C.Index> where C : Collection