> ## Documentation Index
> Fetch the complete documentation index at: https://crossmint-devin-1787949784-wallet-docs-two-concept-model.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# FiatCurrency

> Swift Enumeration

**Enumeration**

```swift theme={null}
enum FiatCurrency
```

## Operators

### \<(\_:\_:)

Inherited from `Comparable.<(_:_:)`.

```swift theme={null}
static func < (lhs: FiatCurrency, rhs: FiatCurrency) -> Bool
```

## Enumeration Cases

| Case          | Description |
| ------------- | ----------- |
| `aud`         | -           |
| `eur`         | -           |
| `gbp`         | -           |
| `hkd`         | -           |
| `inr`         | -           |
| `jpy`         | -           |
| `krw`         | -           |
| `sgd`         | -           |
| `unknown(_:)` | -           |
| `usd`         | -           |
| `vnd`         | -           |

## Initializers

### init(from:)

Inherited from `Decodable.init(from:)`.

```swift theme={null}
init(from decoder: any Decoder) throws
```

### init(name:)

```swift theme={null}
init(name: String)
```

## Instance Properties

| Property                       | Type     | Description |
| ------------------------------ | -------- | ----------- |
| `isPaymentEnabledFiatCurrency` | `Bool`   | -           |
| `name`                         | `String` | -           |

## Instance Methods

### contains(\_:)

Inherited from `RangeExpression.contains(_:)`.

```swift theme={null}
func contains(_ element: FiatCurrency) -> Bool
```

### encode(to:)

Inherited from `Encodable.encode(to:)`.

```swift theme={null}
func encode(to encoder: any Encoder) throws
```

### relative(to:)

Inherited from `RangeExpression.relative(to:)`.

```swift theme={null}
func relative<C>(to collection: C) -> Range<FiatCurrency> where C : Collection, C.Index == FiatCurrency
```

### relative(to:)

```swift theme={null}
func relative<C>(to collection: C) -> Range<C.Index> where C : Collection
```
