/* tslint:disable */ /* eslint-disable */ /** * depositproducts * 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 constraints, like min/max/default. */ export interface AmountDecimalInterval { /** * The default value, will be used in case no other value was filled in by the user. */ defaultValue?: number; /** * The maximum value. */ maxValue?: number; /** * The minimum value. */ minValue?: number; }