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

remove required in Permissions
(Change Properties to GattCharacteristicProperties to avoid potential name collision.)
(remove required in Permissions)
Line 32: Line 32:
  dictionary Permissions
  dictionary Permissions
  {
  {
   required boolean read;
   boolean read = false;
   required boolean readEncrypted;
   boolean readEncrypted = false;
   required boolean readEncryptedMITM;
   boolean readEncryptedMITM = false;
   required boolean write;
   boolean write = false;
   required boolean writeEncrypted;
   boolean writeEncrypted = false;
   required boolean writeEncryptedMITM;
   boolean writeEncryptedMITM = false;
   required boolean writeSigned;
   boolean writeSigned = false;
   required boolean writeSignedMITM;
   boolean writeSignedMITM = false;
  };
  };


120

edits