/* tslint:disable */ /* eslint-disable */ /** * loans * 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. */ // May contain unused imports in some cases // @ts-ignore import type { AccountInterestRateSettings } from './account-interest-rate-settings'; /** * The interest settings, holds all the properties regarding interests for the loan account. */ export interface InterestSettingsForSchedulePreview { /** * The interest settings details for schedule preview. */ accountInterestRateSettings?: Array; /** * The interest rate. Represents the interest rate for the loan account. The interest on loans is accrued on a daily basis, which allows charging the clients only for the days they actually used the loan amount. */ interestRate?: number; /** * Interest to be added to active organization index interest rate in order to find out actual interest rate */ interestSpread?: number; }