Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.16.2, 2.17.0
-
None
-
Unknown
Description
When setting ".access" either "internal" or as "false" it still appears in Swagger-UI/doesn't modify the JSON to "paramAccess":"internal"
rest(baseUrl).get("/{customerId}") //--------Swagger Documentation-------- .param().name("customerId").access("internal").type(RestParamType.body).description("The customer ID number.").required(true).dataType("string").endParam();
JSON Generated:
parameters: [{ name: "customerId", in: "path", description: "The customer ID number.", required: true, type: "string" },...]