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

# SeamUnlockEvent

> Represents the stages of a door unlock operation performed by the Seam SDK.

## Overview

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

Represents the stages of a door unlock operation performed by the Seam SDK.

***

## Enumeration Cases

### `SeamUnlockEvent.connectionFailed(debugDescription:)`

The unlock operation failed to connect.

```swift theme={null}
case connectionFailed(debugDescription: String?)
```

**Parameters**

| Parameter          | Description                                       |
| ------------------ | ------------------------------------------------- |
| `debugDescription` | Optional debug message providing failure details. |

### `SeamUnlockEvent.grantedAccess`

The lock granted access; entry is allowed.

```swift theme={null}
case grantedAccess
```

### `SeamUnlockEvent.launched`

The unlock operation has started scanning for a lock.

```swift theme={null}
case launched
```

### `SeamUnlockEvent.timedOut`

The unlock operation timed out.

```swift theme={null}
case timedOut
```
