/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The lifecycle a flow follows — payment, deposit, or withdraw. * @export * @enum {string} */ export declare enum FlowModeEnum { Payment = "payment", Deposit = "deposit", Withdraw = "withdraw" } export declare function FlowModeEnumFromJSON(json: any): FlowModeEnum; export declare function FlowModeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowModeEnum; export declare function FlowModeEnumToJSON(value?: FlowModeEnum | null): any;