/** * 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 WalletRecoveryRequest */ export interface WalletRecoveryRequest { /** * User Id * @type {string} * @memberof WalletRecoveryRequest */ userId?: string; } export declare function WalletRecoveryRequestFromJSON(json: any): WalletRecoveryRequest; export declare function WalletRecoveryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletRecoveryRequest; export declare function WalletRecoveryRequestToJSON(value?: WalletRecoveryRequest | null): any;