> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crossmint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# IdentityVerificationStatus

> Swift Enumeration

**Enumeration**

The outcome of an identity verification.

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

The value `unknown` shows a provider state this SDK version does not know. It is never a success.

## Enumeration Cases

| Case                  | Description                                         |
| --------------------- | --------------------------------------------------- |
| `declined`            | The provider rejected the identity of the buyer.    |
| `expired`             | The inquiry expired before the buyer finished it.   |
| `failed`              | The verification did not complete.                  |
| `pendingManualReview` | A person at the provider must review the inquiry.   |
| `pendingReview`       | The provider needs more time to review the inquiry. |
| `unknown`             | A provider state this SDK version does not know.    |
| `verified`            | The provider verified the identity of the buyer.    |

## Initializers

### init(rawValue:)

Inherited from `RawRepresentable.init(rawValue:)`.

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