/* tslint:disable */ /* eslint-disable */ /** * loans * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The amounts affected after completing the loan transaction */ export interface LoanAffectedAmounts { /** * How much credit balance was added/removed in account, within this transaction. */ creditBalanceChangeAmount?: number; /** * How much interest pre-paid was added/removed in account, within this transaction (including taxes). */ deferredInterestAmount?: number; /** * How much fees was added/removed in account, within this transaction. */ feesAmount?: number; /** * How much interest is given to the investors, within this transaction (only for p2p products) */ fundersInterestAmount?: number; /** * How much interest was added/removed in account, within this transaction (including taxes). If there is any deferred interest amount set in this transaction, that amount should be included in this field. */ interestAmount?: number; /** * How much interest from arrears was added/removed in account, within this transaction (including taxes). */ interestFromArrearsAmount?: number; /** * How much interest is given to the organization, within this transaction (only for p2p products) */ organizationCommissionAmount?: number; /** * How much Payment Holidays interest was added/removed in account, within this transaction (including taxes). */ paymentHolidaysInterestAmount?: number; /** * How much penalties was added/removed in account, within this transaction. */ penaltyAmount?: number; /** * How much principal was added/removed in account, within this transaction. */ principalAmount?: number; }