# ApplyInterestInput

Represents a request for applying the accrued interest 

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**interestApplicationDate** | **string** | The date up to which interest is to be posted | [default to undefined]
**isInterestFromArrears** | **boolean** | Whether the interest amount to apply should be the regular one or interest from arrears. If nothing specified it will be the regular one. | [optional] [default to undefined]
**isPaymentHolidaysInterest** | **boolean** | Whether the interest amount to apply should be the regular one or the one accrued during the Payment Holidays. If nothing specified it will be the regular one. | [optional] [default to undefined]
**notes** | **string** | Additional information for this action | [optional] [default to undefined]
**paymentHolidaysInterestAmount** | **number** | The amount of the Payment Holidays interest to apply | [optional] [default to undefined]

## Example

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

const instance: ApplyInterestInput = {
    interestApplicationDate,
    isInterestFromArrears,
    isPaymentHolidaysInterest,
    notes,
    paymentHolidaysInterestAmount,
};
```

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