> ## 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

> 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 `mintlify-codegen/android-reference/`.

## Overview

```kotlin theme={null}
sealed class SeamUnlockEvent
```

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

***

## Cases

### `ScanningStarted`

The unlock operation has started scanning.

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

### `AccessGranted`

The unlock operation has been granted access.

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

### `Timeout`

The unlock operation has timed out.

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

### `ReaderError`

An error has occurred while communicating with the reader.

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