# BluetoothAdapterEventAttached

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

Bluetooth adapter attached event.

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

[language/library/src/device/binding/bluetooth.ds:99:108](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L99-L108)

## Members

### `kind: "attached"`

Event discriminator.

### `timestampNs: uint64`

Event timestamp in nanoseconds.

### `sequence: uint64`

Event sequence number.

### `adapter: BluetoothAdapter`

Bluetooth adapter.
