/* 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 REFUND */ export interface RefundLoanTransactionInput { /** * The amount of the refund */ amount: number; /** * The booking date of the refund (as Organization Time) */ bookingDate?: string; /** * The external id of the refund transaction. Customizable and unique */ externalId?: string; /** * The disbursement key for which the refund is performed */ linkedDisbursementKey: string; /** * Extra notes about the refund transaction. Notes can have at most 255 characters in length. */ notes?: string; transactionDetails?: LoanTransactionDetailsInput; /** * The entry date of the refund (as Organization Time) */ valueDate?: string; }