Enum types in return types are not handled properly, they get generated as N200[attribute name with first letter uppercase] which is not defined in the struct
This results in an error during build
I would expect it being correctly handled as an enum but it would be nice to at least just handle that as a string/int so that some client can be generated from an api spec even if the enum type in the return type would not be supported
Workaround: use a string type in the openapi schema
Enum types in return types are not handled properly, they get generated as
N200[attribute name with first letter uppercase]which is not defined in the structThis results in an error during build
I would expect it being correctly handled as an enum but it would be nice to at least just handle that as a string/int so that some client can be generated from an api spec even if the enum type in the return type would not be supported
Workaround: use a string type in the openapi schema