I need help to figure out how to generate type as class.
This is the xsd file I have.
<xsd:element name="GetPatient" type="c:GetPatientType" />
<xsd:complexType name="GetPatientType">
<xsd:sequence>
<xsd:element name="fieldA" type="xsd:string" />
<xsd:element name="fieldB" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
However, the result is - I got GetPatientType with the fields, but there is no GetPatient class. My goal is to generate GetPatient with all the three fields as its field. So, GetPatient with field A and field B. Is that possible?
Thanks all for your help!