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

# SeamUnlockEvent

> Events related to the co.seam.core.api.SeamSDK.unlock operation.

> Auto-generated from the Seam Android SDK Kotlin sources. Do not edit by hand — see `codegen/android-reference/`.

## Overview

```kotlin theme={"dark"}
sealed class SeamUnlockEvent
```

Events related to the `co.seam.core.api.SeamSDK.unlock` operation.

***

## Cases

### `ScanningStarted`

The unlock operation has started scanning.

```kotlin theme={"dark"}
class ScanningStarted : SeamUnlockEvent()
```

### `AccessGranted`

The unlock operation has been granted access.

```kotlin theme={"dark"}
class AccessGranted : SeamUnlockEvent()
```

### `Timeout`

The unlock operation has timed out.

```kotlin theme={"dark"}
class Timeout : SeamUnlockEvent()
```

### `ReaderError`

An error has occurred while communicating with the reader.

```kotlin theme={"dark"}
class ReaderError(val message: String) : SeamUnlockEvent()
```
