B2G/Bluetooth/WebBluetooth-v2/BluetoothGattCharacteristic: Difference between revisions

Remove required in GattCharacteristicProperties
(remove required in Permissions)
(Remove required in GattCharacteristicProperties)
Line 45: Line 45:
  dictionary GattCharacteristicProperties
  dictionary GattCharacteristicProperties
  {
  {
   required boolean broadcast;
   boolean broadcast = false;
   required boolean read;
   boolean read = false;
   required boolean writeNoResponse;
   boolean writeNoResponse = false;
   required boolean write;
   boolean write = false;
   required boolean notify;
   boolean notify = false;
   required boolean indicate;
   boolean indicate = false;
   required boolean signedWrite;
   boolean signedWrite = false;
   required boolean extendedProps;
   boolean extendedProps = false;
  };
  };


120

edits