hello, I'm using wiremock standalone with the grpc...
# help
p
hello, I'm using wiremock standalone with the grpc extension. I have a following request proto model:
Copy code
message Request {
  repeated string resource_ids = 1;
}
When I try to use the
resource_ids
in my response e.g.
Copy code
{{jsonPath request.body '$.resource_ids.[0]'}}
I'm getting empty string. After some investigation when I checked the
/__admin/requests
endpoint it turned out, that the request body is:
Copy code
"body": "{\n  \"requestIds\": [\"d634e943-6760-4668-be33-62841da07d79\"]\n}",
Is this transformation
request_ids
->
requestIds
documented anywhere? Is it possible to turn off the snake case to camel case renaming?