/* tslint:disable */ /* eslint-disable */ /** * deposits * 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 action details for a deposit account. */ export interface DepositAccountAction { /** * The action type to be applied. */ action: DepositAccountActionActionEnum; /** * The notes related to the action performed. */ notes?: string; } export const DepositAccountActionActionEnum = { Approve: 'APPROVE', UndoApprove: 'UNDO_APPROVE', Lock: 'LOCK', Unlock: 'UNLOCK', Close: 'CLOSE', CloseWithdraw: 'CLOSE_WITHDRAW', CloseReject: 'CLOSE_REJECT', CloseWriteOff: 'CLOSE_WRITE_OFF', } as const; export type DepositAccountActionActionEnum = (typeof DepositAccountActionActionEnum)[keyof typeof DepositAccountActionActionEnum];