We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3d14c8 commit d9001b8Copy full SHA for d9001b8
4 files changed
docs/generators/csharp.md
@@ -88,6 +88,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
88
<li>List</li>
89
<li>Object</li>
90
<li>String</li>
91
+<li>System</li>
92
<li>System.IO.Stream</li>
93
<li>bool</li>
94
<li>bool?</li>
docs/generators/java.md
@@ -197,7 +197,9 @@ These options may be applied as additional-properties (cli) or configOptions (pl
197
<li>int</li>
198
<li>interface</li>
199
<li>list</li>
200
+<li>localdate</li>
201
<li>localreturntype</li>
202
+<li>localtime</li>
203
<li>localvaraccept</li>
204
<li>localvaraccepts</li>
205
<li>localvarauthnames</li>
@@ -215,6 +217,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
215
217
<li>new</li>
216
218
<li>null</li>
219
<li>object</li>
220
+<li>offsetdatetime</li>
221
<li>package</li>
222
<li>private</li>
223
<li>protected</li>
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/AbstractCSharpCodegen.java
@@ -146,7 +146,7 @@ public AbstractCSharpCodegen() {
146
"foreach", "goto", "if", "implicit", "in", "int", "interface", "internal", "is", "lock",
147
"long", "namespace", "new", "null", "object", "operator", "out", "override", "params",
148
"private", "protected", "public", "readonly", "ref", "return", "sbyte", "sealed",
149
- "short", "sizeof", "stackalloc", "static", "string", "struct", "switch", "this", "throw",
+ "short", "sizeof", "stackalloc", "static", "string", "struct", "switch", "system", "this", "throw",
150
"true", "try", "typeof", "uint", "ulong", "unchecked", "unsafe", "ushort", "using",
151
"virtual", "void", "volatile", "while")
152
);
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/AbstractJavaCodegen.java
@@ -196,7 +196,7 @@ public AbstractJavaCodegen() {
196
"import", "public", "throws", "case", "enum", "instanceof", "return", "transient",
"catch", "extends", "int", "short", "try", "char", "final", "interface", "static",
"void", "class", "finally", "long", "strictfp", "volatile", "const", "float",
- "native", "super", "while", "null")
+ "native", "super", "while", "null", "offsetdatetime", "localdate", "localtime")
languageSpecificPrimitives = Sets.newHashSet("String",
0 commit comments