# Amount

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]

## Example

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

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

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