# LoanAccountBalanceChange

Change on a loan account balance

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | amount by which the balance was changed | [optional] [default to undefined]
**applicationDate** | **string** | date/time when the change was applied | [optional] [default to undefined]
**creationDate** | **string** | date/time when the change was recorded | [optional] [default to undefined]
**loanAccountEncodedKey** | **string** | encoded key of the loan account | [optional] [default to undefined]
**loanTransactionEncodedKey** | **string** | encoded key of the loan transaction | [optional] [default to undefined]
**type** | **string** | balance type | [optional] [default to undefined]

## Example

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

const instance: LoanAccountBalanceChange = {
    amount,
    applicationDate,
    creationDate,
    loanAccountEncodedKey,
    loanTransactionEncodedKey,
    type,
};
```

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