# BluetoothGattWriteMode

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

Bluetooth GATT write mode.

```ds title="BluetoothGattWriteMode"
export enum BluetoothGattWriteMode {
    WithResponse = 1,
    WithoutResponse = 2,
}
```

[language/library/src/device/binding/bluetooth.ds:79:84](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L79-L84)

## Variants

### `WithResponse = 1`

Write with an ATT response.

### `WithoutResponse = 2`

Write without an ATT response.
