<xs:complexType name="OrderDataBean">
<xs:sequence>
<xs:element minOccurs="0" name="orderID" type="xs:int" />
<xs:element minOccurs="0" name="orderType" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="orderStatus" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="openDate" type="xs:dateTime" />
<xs:element minOccurs="0" name="completionDate" type="xs:dateTime" />
<xs:element minOccurs="0" name="quantity" type="xs:double" />
<xs:element minOccurs="0" name="price" type="xs:decimal" />
<xs:element minOccurs="0" name="orderFee" type="xs:decimal" />
<xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>