/* 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. */ /** * Used or TIERED interest rates, holds the values to define how the interest is computed */ export interface InterestRateTier { /** * The encoded key of the interest rate tier, auto generated, unique */ encodedKey?: string; /** * The top-limit value for the account balance in order to determine if this tier is used or not */ endingBalance?: number; /** * The rate used for computing the interest for an account which has the balance less than the ending balance */ interestRate: number; }