# TransactionBalances

The balances changed within a transaction.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**advancePosition** | **number** | Captures the advance (prepaid) amount. | [optional] [default to undefined]
**arrearsPosition** | **number** | Captures the arrears position amount for the account in arrears. | [optional] [default to undefined]
**expectedPrincipalRedraw** | **number** | The difference between principal balance and redraw balance after each transaction performed on the loan account. | [optional] [default to undefined]
**principalBalance** | **number** | The account redraw balance captured after the transaction update. | [optional] [default to undefined]
**redrawBalance** | **number** | The account redraw balance captured after the transaction update. | [optional] [default to undefined]
**totalBalance** | **number** | The running balance still owed for the loan. | [optional] [default to undefined]

## Example

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

const instance: TransactionBalances = {
    advancePosition,
    arrearsPosition,
    expectedPrincipalRedraw,
    principalBalance,
    redrawBalance,
    totalBalance,
};
```

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