/** * 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. */ /** * * @export * @interface WalletRecoveryResponse */ export interface WalletRecoveryResponse { /** * Recovered wallets data * @type {object} * @memberof WalletRecoveryResponse */ data?: object; /** * Summary of wallet recovery * @type {string} * @memberof WalletRecoveryResponse */ message?: string; } export declare function WalletRecoveryResponseFromJSON(json: any): WalletRecoveryResponse; export declare function WalletRecoveryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletRecoveryResponse; export declare function WalletRecoveryResponseToJSON(value?: WalletRecoveryResponse | null): any;