/** * 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. */ import * as runtime from '../runtime'; import { GlobalWalletConnection } from '../models'; export interface GetGlobalWalletConnectionsRequest { environmentId: string; userId?: string; status?: GetGlobalWalletConnectionsStatusEnum; offset?: number; limit?: number; } /** * */ export declare class GlobalWalletConnectionsApi extends runtime.BaseAPI { /** * Returns the global wallet connections for the specified environment. * Get global wallet connections for the environment */ getGlobalWalletConnectionsRaw(requestParameters: GetGlobalWalletConnectionsRequest, initOverrides?: RequestInit): Promise>>; /** * Returns the global wallet connections for the specified environment. * Get global wallet connections for the environment */ getGlobalWalletConnections(requestParameters: GetGlobalWalletConnectionsRequest, initOverrides?: RequestInit): Promise>; } /** * @export * @enum {string} */ export declare enum GetGlobalWalletConnectionsStatusEnum { Connected = "connected", Disconnected = "disconnected" }