# ChangeRepaymentValueLoanAccountInput

Represents the request payload for performing a repayment value change action

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | Fixed amount for being used for the repayments principal due | [optional] [default to undefined]
**notes** | **string** | Notes for the repayment value change action performed on the loan account | [optional] [default to undefined]
**percentage** | **number** | Percentage of principal amount used for the repayments principal due | [optional] [default to undefined]
**valueDate** | **string** | Date when to change the repayment value (as Organization Time) | [default to undefined]

## Example

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

const instance: ChangeRepaymentValueLoanAccountInput = {
    amount,
    notes,
    percentage,
    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)
