/* 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. */ /** * The planned fee details holds the information related to the installment key, predefined fee key and amount */ export interface PlannedInstallmentFee { /** * The amount of the planned fee. */ amount?: number; /** * The date when a planned fee should be applied, overriding installment\'s due date. It should match the interval of the installment. If it belong to first installment, it should be between disbursement date and installment due date. */ applyOnDate?: string; /** * The encoded key of the planned installment fee, auto generated, unique. */ encodedKey?: string; /** * The encoded key of the installment on which the predefined fee is planned. */ installmentKey?: string; /** * The number of the installment on which the predefined fee is planned. It is used only in the case when fees are created at the same time with the loan account creation or during preview schedule, before account creation, otherwise this should be empty and installmentKey will be used to identify an installment. */ installmentNumber?: number; /** * The encoded key of the predefined fee which is planned. */ predefinedFeeKey: string; }