/* 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 taxes applied within a transaction. */ export interface Taxes { /** * How much taxes on the interest that was pre-paid were added/removed in account, within this transaction. If there is any deferred tax on interest amount set in this transaction, that amount should be included in this field. */ deferredTaxOnInterestAmount?: number; /** * How much taxes on the fees that were paid in this transaction were added/removed in account, within this transaction. */ taxOnFeesAmount?: number; /** * How much taxes on the interest that was paid in this transaction were added/removed in account, within this transaction. */ taxOnInterestAmount?: number; /** * The amount of taxes on the interest from arrears that were applied/paid in account, within this transaction. */ taxOnInterestFromArrearsAmount?: number; /** * The amount of taxes on the Payment Holidays interest that were added/removed in account, within this transaction. */ taxOnPaymentHolidaysInterest?: number; /** * How much taxes on the penalties that were paid in this transaction were added/removed in account, within this transaction. */ taxOnPenaltyAmount?: number; /** * The tax rate that was set or changed in this transaction. */ taxRate?: number; }