<xsd:simpleType name="LoanRepaymentConfirmEnum">
<xsd:annotation>
<xsd:documentation xml:lang="en">>Defines whether the lender is accepting in full, partially accepting or denying repayment</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="AcceptInFull">
<xsd:annotation>
<xsd:documentation xml:lang="en">Lender is accepting the repayment in full.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="PartiallyAccept">
<xsd:annotation>
<xsd:documentation xml:lang="en">Lender is partially accepting the repayment.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Deny">
<xsd:annotation>
<xsd:documentation xml:lang="en">Lender is denying the repayment.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|