# DecimalInterval

Decimal constraints, like min/max/default.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**defaultValue** | **number** | The default value, will be used in case no other value was filled in by the user. | [optional] [default to undefined]
**maxValue** | **number** | The maximum value. | [optional] [default to undefined]
**minValue** | **number** | The minimum value. | [optional] [default to undefined]

## Example

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

const instance: DecimalInterval = {
    defaultValue,
    maxValue,
    minValue,
};
```

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