/* 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 loan account balance details. */ export interface Balances { /** * Available credit balance on the loan account. */ creditBalance?: number; /** * The fees balance. Represents the total fees expected to be paid on this account at a given moment. */ feesBalance?: number; /** * The fees due. Representing the total fees due for the account. */ feesDue?: number; /** * The fees paid. Represents the total fees paid for the account. */ feesPaid?: number; /** * The sum of all the authorization hold amounts on this account. */ holdBalance?: number; /** * Represents the total interest owed by the client (total interest applied for account minus interest paid). */ interestBalance?: number; /** * The interest due. Indicates how much interest it\'s due for the account at this moment. */ interestDue?: number; /** * The interest from arrears balance. Indicates interest from arrears owned by the client, from now on. (total interest from arrears accrued for account - interest from arrears paid). */ interestFromArrearsBalance?: number; /** * The interest from arrears due. Indicates how much interest from arrears it\'s due for the account at this moment. */ interestFromArrearsDue?: number; /** * The interest from arrears paid, indicates total interest from arrears paid into the account. */ interestFromArrearsPaid?: number; /** * The interest paid, indicates total interest paid into the account. */ interestPaid?: number; /** * The penalty balance. Represents the total penalty expected to be paid on this account at a given moment. */ penaltyBalance?: number; /** * The penalty due. Represents the total penalty amount due for the account. */ penaltyDue?: number; /** * The Penalty paid. Represents the total penalty amount paid for the account. */ penaltyPaid?: number; /** * The total principal owned by the client, from now on (principal disbursed - principal paid). */ principalBalance?: number; /** * The principal due, indicates how much principal it\'s due at this moment. */ principalDue?: number; /** * The principal paid, holds the value of the total paid into the account. */ principalPaid?: number; /** * The total redraw amount owned by the client, from now on. */ redrawBalance?: number; }