Open
Description
The generated docs seem to be the same for all BinaryData properties, but for Parameters, the "value" in the key value pair needs to itself be a JSON object, so the example should have:
BinaryData.FromObjectAsJson(new { parameterName = { value = "parameterValue" })
As opposed to what it currently has:
BinaryData.FromObjectAsJson(new { key = "value" })
I know this is generated, but it would be good to improve this.