/* 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 information for an action to perform on a loan account. */ export interface LoanAccountAction { /** * The action type to be applied. */ action: LoanAccountActionActionEnum; /** * The notes related to the action performed. */ notes?: string; } export const LoanAccountActionActionEnum = { RequestApproval: 'REQUEST_APPROVAL', SetIncomplete: 'SET_INCOMPLETE', Approve: 'APPROVE', UndoApprove: 'UNDO_APPROVE', Reject: 'REJECT', Withdraw: 'WITHDRAW', Close: 'CLOSE', UndoReject: 'UNDO_REJECT', UndoWithdraw: 'UNDO_WITHDRAW', UndoClose: 'UNDO_CLOSE', } as const; export type LoanAccountActionActionEnum = (typeof LoanAccountActionActionEnum)[keyof typeof LoanAccountActionActionEnum];