/* 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 REDRAW_REPAYMENT */ export interface RedrawRepaymentTransactionInputDTO { /** * The amount of the redraw repayment */ amount?: number; /** * The booking date of the repayment (as Organization Time) */ bookingDate?: string; /** * Extra notes about the redraw repayment transaction. Notes can have at most 255 characters in length. */ notes?: string; /** * The entry date of the repayment (as Organization Time) */ valueDate?: string; }