/* tslint:disable */ /* eslint-disable */ /** * loanproducts * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Decimal integer, like min/max/default. */ export interface IntegerIntervalConstraints { /** * The default value, will be used in case no other value was filled in by the user. */ defaultValue?: number; /** * The encoded key of the integer constraint, auto generated, unique */ encodedKey?: string; /** * The maximum value. */ maxValue?: number; /** * The minimum value. */ minValue?: number; }