mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-11-23 03:53:44 +00:00
* Add mutable model option to kotlin generators fix #3803 * doc * Change template name to modelMutable * Samples
1009 B
1009 B
| title | sidebar_label |
|---|---|
| Config Options for kotlin-vertx | kotlin-vertx |
| Option | Description | Values | Default |
|---|---|---|---|
| sourceFolder | source folder for generated code | src/main/kotlin | |
| packageName | Generated artifact package name. | org.openapitools | |
| apiSuffix | suffix for api classes | Api | |
| groupId | Generated artifact package's organization (i.e. maven groupId). | org.openapitools | |
| artifactId | Generated artifact id (name of jar). | null | |
| artifactVersion | Generated artifact's package version. | 1.0.0 | |
| enumPropertyNaming | Naming convention for enum properties: 'camelCase', 'PascalCase', 'snake_case', 'UPPERCASE', and 'original' | camelCase | |
| serializationLibrary | What serialization library to use: 'moshi' (default), or 'gson' | moshi | |
| parcelizeModels | toggle "@Parcelize" for generated models | null | |
| serializableModel | boolean - toggle "implements Serializable" for generated models | null | |
| modelMutable | Create mutable models | false |