Closed evestera closed 2 years ago
Also this seems to not generate any code
[{"key": "10"}, {"key": "2"}, {"key": "1"}]
Should be
struct Item {
key: String,
}
type TypeName = Vec<Item>;
Also this seems to not generate any code
[{"key": "10"}, {"key": "2"}, {"key": "1"}]
Hmm, that seems weird. Getting output both from the CLI and the old web interface. What interface are you using?
We should avoid creating multiple structurally identical types. E.g. for the following JSON:
We currently generate this:
But we want something like this: