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
For a larger scale API, that only wants to expose certain models to swagger, it's neccessary to be able to exclude certain structs so that they dont get parsed nor showed in the final Swagger doc.
I propose a simple annotation in a struct, comment just like @Description, this would be @Ignore or @Exclude
// This annotation would enable to omit this struct from being parsed// @Exclude/@IgnoretypeFoostruct {
BarstringBlobint
}
The text was updated successfully, but these errors were encountered:
For a larger scale API, that only wants to expose certain models to swagger, it's neccessary to be able to exclude certain structs so that they dont get parsed nor showed in the final Swagger doc.
I propose a simple annotation in a struct, comment just like
@Description
, this would be@Ignore
or@Exclude
The text was updated successfully, but these errors were encountered: