# BluetoothAdapterEventDetached

`import { BluetoothAdapterEventDetached } from "destack:device/binding";`

Bluetooth adapter detached event.

```ds title="BluetoothAdapterEventDetached"
export struct BluetoothAdapterEventDetached {
    kind: "detached";
    timestampNs: uint64;
    sequence: uint64;
    adapter: BluetoothAdapter;
}
```

[language/library/src/device/binding/bluetooth.ds:123:132](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L123-L132)

## Members

### `kind: "detached"`

Event discriminator.

### `timestampNs: uint64`

Event timestamp in nanoseconds.

### `sequence: uint64`

Event sequence number.

### `adapter: BluetoothAdapter`

Bluetooth adapter.
