/* 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. */ // May contain unused imports in some cases // @ts-ignore import type { LoanTransactionDetailsInput } from './loan-transaction-details-input'; /** * Represents the request payload for creating a transaction of type PAYMENT_MADE */ export interface PaymentMadeTransactionInput { /** * The amount of the payment */ amount: number; /** * The booking date of the payment made transaction (as Organization Time) */ bookingDate?: string; /** * The external id of the payment made transaction, customizable, unique */ externalId?: string; /** * Notes about the payment made transaction. The notes can have at most 255 characters in length. */ notes?: string; /** * The currency code for the payment made transaction */ originalCurrencyCode?: string; transactionDetails?: LoanTransactionDetailsInput; /** * The entry date of the payment made transaction (as Organization Time) */ valueDate?: string; }