Closed
Description
I'm using @ParameterObject for query string object, and i want to ignore some properties with @JsonIgnore, but i still listed in the swagger page.
Here is an example:
@GetMapping()
public Resp xxx(@ParameterObject SomeRequstObj request) {
}
public class SomeRequestObj {
....
@JsonIgnore
private Integer someProperies;
}