# BluetoothGattService

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

Bluetooth GATT service.

```ds title="BluetoothGattService"
export struct BluetoothGattService {
    id: string;
    uuid: string;
    isPrimary: boolean;
    includedServiceIds: [string];
}
```

[language/library/src/device/binding/bluetooth.ds:362:371](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L362-L371)

## Members

### `id: string`

Stable service identifier within this device session.

### `uuid: string`

Service UUID.

### `isPrimary: boolean`

Whether this is a primary service.

### `includedServiceIds: [string]`

Included service identifiers.
