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
| helpTxt | Generates an OCaml client library (beta). ||
14
+
| helpTxt | Generates an OCaml client library. ||
15
15
16
16
## CONFIG OPTIONS
17
17
These options may be applied as additional-properties (cli) or configOptions (plugins). Refer to [configuration docs](https://openapi-generator.tech/docs/configuration) for more details.
return"Generates an OCaml client library (beta).";
79
+
return"Generates an OCaml client library.";
78
80
}
79
81
80
82
publicOCamlClientCodegen() {
@@ -233,6 +235,71 @@ public Map<String, ModelsMap> postProcessAllModels(Map<String, ModelsMap> supero
233
235
234
236
}
235
237
238
+
/**
239
+
* Add support for direct recursive types (e.g., A -> A).
240
+
* This does *not* support mutually recursive types (e.g., A -> B -> A), as this is a much more complex beast in OCaml (since mutually recursive types must live in the same file).
0 commit comments