I have this configuration, how to avoid the Test-Token from being added in the final client and thus this methods signature will not be test(String testToken)
but test()
...
"paths": {
"/test": {
"post": {
"tags": [
"test-controller"
],
"operationId": "checkTest",
"parameters": [
{
"name": "Test-Token",
"in": "header",
"required": false,
"schema": {
"type": "string",
"default": "test"
},
}
],
...
I tried to add ‘x-codegen-parameter’ to false in the json but still it gets generated.