# ChangeDueDatesSettingsInput

Represents the request payload for performing change due dates settings action

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**entryDate** | **string** | The date when to change the due dates settings - deprecated, use valueDate instead | [optional] [default to undefined]
**fixedDaysOfMonth** | **Array&lt;number&gt;** | The new fixed days of month to be used on the account | [default to undefined]
**notes** | **string** | The notes for the change due dates settings action performed on the loan account | [optional] [default to undefined]
**valueDate** | **string** | The date when to change the due dates settings | [optional] [default to undefined]

## Example

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

const instance: ChangeDueDatesSettingsInput = {
    entryDate,
    fixedDaysOfMonth,
    notes,
    valueDate,
};
```

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