update generator doc

This commit is contained in:
William Cheng 2018-11-10 00:28:08 +08:00
parent f802e63f9f
commit 7c6beb9692
4 changed files with 17 additions and 0 deletions

View File

@ -6,4 +6,7 @@ CONFIG OPTIONS for elm
0.19 - Elm 0.19
0.18 - Elm 0.18
elmPrefixCustomTypeVariants
Prefix custom type variants (Default: false)
Back to the [generators list](README.md)

View File

@ -4,4 +4,7 @@ CONFIG OPTIONS for erlang-server
packageName
Erlang package name (convention: lowercase). (Default: openapi)
openAPISpecName
Openapi Spec Name. (Default: openapi)
Back to the [generators list](README.md)

View File

@ -10,4 +10,9 @@ CONFIG OPTIONS for rust
hideGenerationTimestamp
Hides the generation timestamp when files are generated. (Default: true)
library
library template (sub-template) to use. (Default: hyper)
hyper - HTTP client: Hyper.
reqwest - HTTP client: Reqwest.
Back to the [generators list](README.md)

View File

@ -152,6 +152,9 @@ CONFIG OPTIONS for spring
useBeanValidation
Use BeanValidation API annotations (Default: true)
performBeanValidation
Use Bean Validation Impl. to perform BeanValidation (Default: false)
implicitHeaders
Use of @ApiImplicitParams for headers. (Default: false)
@ -164,6 +167,9 @@ CONFIG OPTIONS for spring
useOptional
Use Optional container for optional parameters (Default: false)
hateoas
Use Spring HATEOAS library to allow adding HATEOAS links (Default: false)
library
library template (sub-template) to use (Default: spring-boot)
spring-boot - Spring-boot Server application using the SpringFox integration.