Hello --
I've been searching through the source for a way to mark a property as input or output only.
For example, if there was a property in a model that can only be set by the system and any input for it will be ignored. It would be nice to have it show up in the documentation for any request that returns that model type, but not in the documentation for a request that is for creating that model. Is this something that is supported, or is there interest in supporting it?
@ApiProperty(value = "Password", inputOnly = true)
@ApiProperty(value = "Unsettable setting", outputOnly = true)
I saw that there is "access" within ApiProperty, as well as ApiParam. What is this used for?
Thanks,
Ben