/* tslint:disable */ /* eslint-disable */ /** * loans/transactions * 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 the request payload for creating a transaction of type FEE_APPLIED */ export interface FeeLoanTransactionInput { /** * The fee amount to be applied on the account */ amount?: number; /** * The date when the fee transaction is logged into accounting (as Organization Time) */ bookingDate?: string; /** * The external id of the repayment transaction, customizable, unique */ externalId?: string; /** * This flag indicates whether the fee should be capitalised or not */ feeCapitalisation?: boolean; /** * The date of the first repayment for the loan account (as Organization Time) */ firstRepaymentDate?: string; /** * The installment number on which the fee will be applied */ installmentNumber?: number; /** * Extra notes about the current transaction */ notes?: string; /** * The encodedKey of the predefined fee that defines the current fee */ predefinedFeeKey?: string; /** * The date when to apply the fee (as Organization Time) */ valueDate?: string; }