/* 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 WITHDRAWAL_REDRAW */ export interface WithdrawalRedrawTransactionInput { /** * The amount to be withdrawn from redraw balance */ amount: number; /** * The booking date of the withdrawal transaction (as Organization Time) */ bookingDate?: string; /** * The external id of the withdrawal transaction, customizable, unique */ externalId?: string; /** * Extra notes about the withdrawal transaction. Notes can have at most 255 characters in length. */ notes?: string; /** * The currency code for the transaction */ originalCurrencyCode?: string; transactionDetails?: LoanTransactionDetailsInput; /** * The value date of the withdrawal transaction (as Organization Time) */ valueDate?: string; }