# FeesAccountSettings

The fee settings, holds all the properties regarding fees for the loan account.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accruedFee** | **number** | The accrued fee. Represents the accrued fee for the loan account. The fee on loans is accrued on a daily basis, which allows charging the clients only for the days they actually used the loan amount. | [optional] [readonly] [default to undefined]
**accruedFeeFromArrears** | **number** | The accrued fee from arrears. Represents the accrued fee from arrears for the loan account. The fee on loans is accrued on a daily basis, which allows charging the clients only for the days they actually used the loan amount. | [optional] [readonly] [default to undefined]
**feeRate** | **number** | The fee rate. Represents the fee rate for the loan account. The fee on loans is accrued on a daily basis, which allows charging the clients only for the days they actually used the loan amount. | [optional] [default to undefined]

## Example

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

const instance: FeesAccountSettings = {
    accruedFee,
    accruedFeeFromArrears,
    feeRate,
};
```

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