# ChangeInterestRateLoanAccountInput

Represents the request payload for performing an PMT Adjustment action

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**interestRate** | **number** | The new interest rate to be available on the account | [optional] [default to undefined]
**interestSpread** | **number** | The new interest spread to be available on the account | [optional] [default to undefined]
**notes** | **string** | The notes for the change interest rate action performed on the loan account | [optional] [default to undefined]
**valueDate** | **string** | The date when to change the interest rate (as Organization Time) | [default to undefined]

## Example

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

const instance: ChangeInterestRateLoanAccountInput = {
    interestRate,
    interestSpread,
    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)
