/** * 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. */ /** * How a flow is funded — a connected wallet, a CEX, or a deposit address. * @export * @enum {string} */ export declare enum FlowSourceTypeEnum { Wallet = "wallet", Exchange = "exchange", DepositAddress = "deposit_address" } export declare function FlowSourceTypeEnumFromJSON(json: any): FlowSourceTypeEnum; export declare function FlowSourceTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowSourceTypeEnum; export declare function FlowSourceTypeEnumToJSON(value?: FlowSourceTypeEnum | null): any;