# BluetoothScanEventUpdated

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

Bluetooth scan updated event.

```ds title="BluetoothScanEventUpdated"
export struct BluetoothScanEventUpdated {
    kind: "updated";
    timestampNs: uint64;
    sequence: uint64;
    device: BluetoothDevice;
}
```

[language/library/src/device/binding/bluetooth.ds:268:277](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L268-L277)

## Members

### `kind: "updated"`

Event discriminator.

### `timestampNs: uint64`

Event timestamp in nanoseconds.

### `sequence: uint64`

Event sequence number.

### `device: BluetoothDevice`

Bluetooth device.
