Update configuration.md (#16683)

added additional example for --additional-properties command with comma (,) seperator
This commit is contained in:
Samson 2023-09-28 19:26:02 +08:00 committed by GitHub
parent 04fa53b692
commit 3c4561ece2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ Suppose you want to apply snake case naming to mysql schema outputs. Your config
**CLI** **CLI**
``` ```
openapi-generator -g mysql-schema -o out -i spec.yaml --additional-properties=identifierNamingConvention=snake_case openapi-generator -g mysql-schema -o out -i spec.yaml --additional-properties=identifierNamingConvention=snake_case,useSingleRequestParameter=true,withInterfaces=true
``` ```
It may seem like a typo but there are two `=` signs in the above example. It may seem like a typo but there are two `=` signs in the above example.