/* tslint:disable */ /* eslint-disable */ /** * loans * 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 the terminate a loan account action */ export interface TerminateLoanAccountInput { /** * The notes for the terminate action performed on the loan account */ notes?: string; /** * The date when terminate the loan account */ valueDate: string; }