<xsd:complexType name="Commission">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type describing the commission that will be charged for each of the hedge transactions.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="commissionDenomination" type="CommissionDenominationEnum">
<xsd:annotation>
<xsd:documentation xml:lang="en">The type of units used to express a commission.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="commissionAmount" type="xsd:decimal">
<xsd:annotation>
<xsd:documentation xml:lang="en">The commission amount, expressed in the way indicated by the commissionType element.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="currency" type="Currency" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The currency in which an amount is denominated.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="commissionPerTrade" type="xsd:decimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The total commission per trade.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="fxRate" type="FxRate" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">FX Rates that have been used to convert commissions to a single currency.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|