# Balances

The loan account balance details.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creditBalance** | **number** | Available credit balance on the loan account. | [optional] [readonly] [default to undefined]
**feesBalance** | **number** | The fees balance. Represents the total fees expected to be paid on this account at a given moment. | [optional] [readonly] [default to undefined]
**feesDue** | **number** | The fees due. Representing the total fees due for the account. | [optional] [readonly] [default to undefined]
**feesPaid** | **number** | The fees paid. Represents the total fees paid for the account. | [optional] [readonly] [default to undefined]
**holdBalance** | **number** | The sum of all the authorization hold amounts on this account. | [optional] [readonly] [default to undefined]
**interestBalance** | **number** | Represents the total interest owed by the client (total interest applied for account minus interest paid). | [optional] [readonly] [default to undefined]
**interestDue** | **number** | The interest due. Indicates how much interest it\&#39;s due for the account at this moment. | [optional] [readonly] [default to undefined]
**interestFromArrearsBalance** | **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). | [optional] [readonly] [default to undefined]
**interestFromArrearsDue** | **number** | The interest from arrears due. Indicates how much interest from arrears it\&#39;s due for the account at this moment. | [optional] [readonly] [default to undefined]
**interestFromArrearsPaid** | **number** | The interest from arrears paid, indicates total interest from arrears paid into the account. | [optional] [readonly] [default to undefined]
**interestPaid** | **number** | The interest paid, indicates total interest paid into the account. | [optional] [readonly] [default to undefined]
**penaltyBalance** | **number** | The penalty balance. Represents the total penalty expected to be paid on this account at a given moment. | [optional] [readonly] [default to undefined]
**penaltyDue** | **number** | The penalty due. Represents the total penalty amount due for the account. | [optional] [readonly] [default to undefined]
**penaltyPaid** | **number** | The Penalty paid. Represents the total penalty amount paid for the account. | [optional] [readonly] [default to undefined]
**principalBalance** | **number** | The total principal owned by the client, from now on (principal disbursed - principal paid). | [optional] [readonly] [default to undefined]
**principalDue** | **number** | The principal due, indicates how much principal it\&#39;s due at this moment. | [optional] [readonly] [default to undefined]
**principalPaid** | **number** | The principal paid, holds the value of the total paid into the account. | [optional] [readonly] [default to undefined]
**redrawBalance** | **number** | The total redraw amount owned by the client, from now on. | [optional] [default to undefined]

## Example

```typescript
import { Balances } from './api';

const instance: Balances = {
    creditBalance,
    feesBalance,
    feesDue,
    feesPaid,
    holdBalance,
    interestBalance,
    interestDue,
    interestFromArrearsBalance,
    interestFromArrearsDue,
    interestFromArrearsPaid,
    interestPaid,
    penaltyBalance,
    penaltyDue,
    penaltyPaid,
    principalBalance,
    principalDue,
    principalPaid,
    redrawBalance,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
