You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/generators/scala-sttp4-jsoniter.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,6 @@ These options may be applied as additional-properties (cli) or configOptions (pl
20
20
| ------ | ----------- | ------ | ------- |
21
21
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false||false|
22
22
|apiPackage|package for generated api classes||null|
23
-
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (preferred for JDK 1.8+)</dd></dl>|java8|
24
23
|disallowAdditionalPropertiesIfNotPresent|If false, the 'additionalProperties' implementation (set to true by default) is compliant with the OAS and JSON schema specifications. If true (default), keep the old (incorrect) behaviour that 'additionalProperties' is set to false by default.|<dl><dt>**false**</dt><dd>The 'additionalProperties' implementation is compliant with the OAS and JSON schema specifications.</dd><dt>**true**</dt><dd>Keep the old (incorrect) behaviour that 'additionalProperties' is set to false by default.</dd></dl>|true|
25
24
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).||true|
26
25
|enumUnknownDefaultCase|If the server adds new enum cases, that are unknown by an old spec/client, the client will fail to parse the network response.With this option enabled, each enum will have a new case, 'unknown_default_open_api', so that when the server sends an enum case that is not known by the client/spec, they can safely fallback to this case.|<dl><dt>**false**</dt><dd>No changes to the enum's are made, this is the default option.</dd><dt>**true**</dt><dd>With this option enabled, each enum will have a new case, 'unknown_default_open_api', so that when the enum case sent by the server is not known by the client/spec, can safely be decoded to this case.</dd></dl>|false|
@@ -34,14 +33,15 @@ These options may be applied as additional-properties (cli) or configOptions (pl
34
33
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.||true|
35
34
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.||true|
36
35
|sourceFolder|source folder for generated code||null|
37
-
|sttpClientVersion|The version of sttp client||4.0.0-M19|
36
+
|sttpClientVersion|The version of sttp client||4.0.0-RC1|
38
37
39
38
## IMPORT MAPPING
40
39
41
40
| Type/Alias | Imports |
42
41
| ---------- | ------- |
43
42
|Array|java.util.List|
44
43
|ArrayList|java.util.ArrayList|
44
+
|BigDecimal|scala.math.BigDecimal|
45
45
|Date|java.util.Date|
46
46
|DateTime|org.joda.time.*|
47
47
|File|java.io.File|
@@ -56,6 +56,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
0 commit comments