forked from loafle/openapi-generator-original
* [docs] Updating docsite outputs to be browsable on Github as well * Fix links to other files Suffix `.md` was needed to make links works * [docs] Add clarification to differences between customization and templating docs * [docs] Collapsible side bar, scroll to top, minor enhancements
1.8 KiB
1.8 KiB
title | sidebar_label |
---|---|
Config Options for kotlin | kotlin |
Option | Description | Values | Default |
---|---|---|---|
sourceFolder | source folder for generated code | src/main/kotlin | |
packageName | Generated artifact package name. | org.openapitools.client | |
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). | kotlin-client | |
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 | |
dateLibrary | Option. Date library to use |
|
java8 |
collectionType | Option. Collection type to use |
|
array |
library | Library template (sub-template) to use |
|
jvm-okhttp4 |