GattReadResult

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
status string
value string Base64-encoded characteristic value
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-gattreadresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GattReadResult",
  "title": "GattReadResult",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Success",
        "Unreachable",
        "ProtocolError",
        "InvalidHandle",
        "AccessDenied"
      ]
    },
    "value": {
      "type": "string",
      "format": "byte",
      "description": "Base64-encoded characteristic value"
    }
  }
}