# BluetoothAdvertisement

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

Bluetooth advertisement payload.

```ds title="BluetoothAdvertisement"
export struct BluetoothAdvertisement {
    localName: string;
    txPower: int16;
    serviceUuids: [string];
    manufacturerData: [BluetoothManufacturerData];
    serviceData: [BluetoothServiceData];
}
```

[language/library/src/device/binding/bluetooth.ds:220:231](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L220-L231)

## Members

### `localName: string`

Advertised local name when available.

### `txPower: int16`

Advertised transmit power in dBm when available.

### `serviceUuids: [string]`

Service UUIDs.

### `manufacturerData: [BluetoothManufacturerData]`

Manufacturer payload entries.

### `serviceData: [BluetoothServiceData]`

Service payload entries.
