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
When using and additional property "removeMinusTextInHeaderProperty" to true then a name of header parameter in function is correct. Wrong is name of parameter in a function documentation
/** * Service that returns maps. * Returns a list of maps. * @param xminusCallMinusChainMinusId * @param xminusExecutionMinusTimeStamp * @param xminusReleaseMinusVersion * @return MapItemDto*/
@GET("/v1/mapitem/{mapItemId}")
fungetMapItem(@Header("X-Call-Chain-Id") xCallChainId: kotlin.String, @Header("X-Execution-TimeStamp") xExecutionTimeStamp: kotlin.String, @Header("X-Release-Version") xReleaseVersion: kotlin.String)
Expected generated documentation is
/** * Service that returns maps. * Returns a list of maps. * @param xCallChainMinusId * @param xExecutionTimeStamp * @param xReleaseVersion * @return MapItemDto*/
The text was updated successfully, but these errors were encountered:
When using and additional property
"removeMinusTextInHeaderProperty" to true
then a name of header parameter in function is correct. Wrong is name of parameter in a function documentationExpected generated documentation is
The text was updated successfully, but these errors were encountered: