Is your feature request related to a problem? Please describe.
Currently, i am unable to control how WireMockServer accepts incoming messages. I would like to have API for request builders similar to what we got after #1341
Describe the solution you'd like
IJsonConverter jsonConverter = new MyJsonConverter();
Request.Create().WithBody(new MyDto(), jsonConverter);
Request.Create().WithBodyAsJson(new MyDto(), jsonConverter);
Request.Create().WithBodyAsProtoBuf(
"greeter.GreetRequestGrpc",
new JsonMatcher(new GreetRequestGrpc(), jsonConverter));
Is your feature request related to a problem? Please describe.
Currently, i am unable to control how WireMockServer accepts incoming messages. I would like to have API for request builders similar to what we got after #1341
Describe the solution you'd like