RowlandBanks

Results 6 comments of RowlandBanks

I've fixed the enum bug, but the unit-test has identified a second bug. The generator generates the following code: ```c# if (instance.AdditionalProperties == null) { instance.AdditionalProperties = new Dictionary(); }...

A third bug is that `oneOf` types are deserialized to a `JsonElement`, not to the actual type when being deserialized. Therefore, when attempting to serialize a deserialized model, one gets...

I've fixed the bugs I've mentioned above, but I have a concern that deserializing to `JsonElement` will be confusing for consumers. Perhaps this can be looked into in a future...

Will destructuring an object using the `{@thing}` syntax support customizing how the destructuring occurs? As a motivating example, we often want to log a complex AWS object such as an...