GattWriteRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
value string Base64-encoded value to write
writeOption string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-gattwriterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GattWriteRequest",
  "title": "GattWriteRequest",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "format": "byte",
      "description": "Base64-encoded value to write"
    },
    "writeOption": {
      "type": "string",
      "enum": [
        "WriteWithResponse",
        "WriteWithoutResponse"
      ],
      "default": "WriteWithResponse"
    }
  },
  "required": [
    "value"
  ]
}