-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Do not create intermediary types for array elements #107
Do not create intermediary types for array elements #107
Conversation
…rated. This is quite useful when using it as a library.
Codecov Report
@@ Coverage Diff @@
## master #107 +/- ##
==========================================
+ Coverage 97.13% 97.14% +<.01%
==========================================
Files 17 17
Lines 2964 2974 +10
==========================================
+ Hits 2879 2889 +10
Misses 85 85
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #107 +/- ##
==========================================
+ Coverage 97.13% 97.14% +<.01%
==========================================
Files 17 17
Lines 2964 2974 +10
==========================================
+ Hits 2879 2889 +10
Misses 85 85
Continue to review full report at Codecov.
|
Co-Authored-By: RedX2501 <guibufolo+git@gmail.com>
The generator will create intermediary types even when the element is only an array:
would generate
With this patch an option
GenerateComplexTypesForCollections
is introduce. By default it isfalse
and would produce the following code: