You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using camel-casing for my route parameters, sometimes I use complex types as parameter which works fine. However, no matter what casing I use for the names of the properties, they are all in lower case in the generated Swagger spec.
In the XML the member looks as follows:
<member name="NavigationFlagParameters.IncludeChildNodes">
<summary>
Indicates whether or not child nodes should be included.
</summary>
</member>
This will be converted into the following in the spec:
{
"name": "includechildnodes",
"in": "query",
"description": "Indicates whether or not child nodes should be included.",
"required": false,
"type": "boolean"
},
Am I missing something or is this a bug?
The text was updated successfully, but these errors were encountered:
I'm using camel-casing for my route parameters, sometimes I use complex types as parameter which works fine. However, no matter what casing I use for the names of the properties, they are all in lower case in the generated Swagger spec.
In the XML the member looks as follows:
This will be converted into the following in the spec:
Am I missing something or is this a bug?
The text was updated successfully, but these errors were encountered: