# FeeAmount

Represents a fee amount.

## 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]
**expectedUnapplied** | **number** | The expected amount, which is the sum of unapplied fee and planned fee due amounts. | [optional] [default to undefined]
**paid** | **number** | The paid amount. | [optional] [default to undefined]

## Example

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

const instance: FeeAmount = {
    due,
    expected,
    expectedUnapplied,
    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)
