-
-
Notifications
You must be signed in to change notification settings - Fork 114
Description
Is your feature request related to a problem? Please describe.
When evaluating Kotlin vs Java code generation, I found that the Java one generates ordinally non final POJO class while Kotlin one generates data class which are not inheritable.
It would be great if we can generate model classes with open class instead or interface for even greater flexibility.
Describe the solution you'd like
An option kotlinGenerateModelInterfaces or kotlinGenerateModelOpenClasses that generate open class or interface instead of data class which can not be inherited.
Describe alternatives you've considered
Generate Java classes instead as models are not final classes. But it would be great to use Kotlin classes.
Additional context
Add any other context or screenshots about the feature request here.