# IntegerIntervalConstraints

Decimal integer, 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]
**encodedKey** | **string** | The encoded key of the integer constraint, auto generated, unique | [optional] [readonly] [default to undefined]
**maxValue** | **number** | The maximum value. | [optional] [default to undefined]
**minValue** | **number** | The minimum value. | [optional] [default to undefined]

## Example

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

const instance: IntegerIntervalConstraints = {
    defaultValue,
    encodedKey,
    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)
