Open torkleyy opened 1 year ago
What was your input XSD?
Just guessing at your issue, if you had something like
<xsd:complexType name="Example">
<xsd:element name="version" type="xsd:UnsignedInt"/>
<xsd:element name="platform_type" type="xsd:String"/>
</xsd:complexType>
as opposed to using the built-in numeric types
<xsd:complexType name="Example">
<xsd:element name="version" type="xsd:unsignedInt"/>
<xsd:element name="platform_type" type="xsd:string"/>
</xsd:complexType>
then this would be the expected behaviour (I believe).
I assumed these are the correct imports:
However, the generated are not in
xsd_types
. Where am I supposed to importxsd
from? Thank you.