<xsd:complexType name="Repayment">
<xsd:annotation>
<xsd:documentation xml:lang="en">An event representing a principal repayment being made by the borrower.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="AbstractLoanContractEvent">
<xsd:sequence>
<xsd:element name="amount" type="MoneyWithParticipantShare" />
<xsd:element name="price" type="NonNegativeDecimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The price at which the repayment occurred. This is usually Par but there could be scenarios where a repayment was made at a discounted level.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:group ref="RepaymentType.model">
<xsd:annotation>
<xsd:documentation xml:lang="en" />
</xsd:annotation>
</xsd:group>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
|