Hi,
I am generating clients for .NET / Java and so on from my OpenAPI specification that is generated by NestJS. The default value for additionalProperties is true according to OpenAPI and therefore all my generated classes have extra properties to catch this. Is there an option to turn this off or to annotate a class with something like
@ApiModel({ additionalProperties: false })
export class ErrorDto {
Btw: I cannot find a tag or channel for openapi