# AmountWithReduced

Represents a simple installment amount structure.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**due** | **number** | The due amount. | [optional] [default to undefined]
**expected** | **number** | The expected amount, which is sum of paid and due amounts. | [optional] [default to undefined]
**paid** | **number** | The paid amount. | [optional] [default to undefined]
**reduced** | **number** | The reduced amount. | [optional] [default to undefined]

## Example

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

const instance: AmountWithReduced = {
    due,
    expected,
    paid,
    reduced,
};
```

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