/* 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. */ /** * Represents a request for applying the accrued interest */ export interface ApplyInterestInput { /** * The date up to which interest is to be posted */ interestApplicationDate: string; /** * Whether the interest amount to apply should be the regular one or interest from arrears. If nothing specified it will be the regular one. */ isInterestFromArrears?: boolean; /** * Whether the interest amount to apply should be the regular one or the one accrued during the Payment Holidays. If nothing specified it will be the regular one. */ isPaymentHolidaysInterest?: boolean; /** * Additional information for this action */ notes?: string; /** * The amount of the Payment Holidays interest to apply */ paymentHolidaysInterestAmount?: number; }