/** * Cardano Wallet Backend API *

* * OpenAPI spec version: 2021.3.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * The status of the SMASH server. Possible values are: health | description --- | --- `\"available\"` | server is awaiting your requests `\"unavailable\"` | server is running, but currently unavailable, try again in a short time `\"unreachable\"` | server could not be reached or didn't return a health status `\"no_smash_configured\"` | SMASH is currently not configured, adjust the Settings first * @export * @interface ApiHealthCheck */ export interface ApiHealthCheck { /** * * @type {string} * @memberof ApiHealthCheck */ health: ApiHealthCheckHealthEnum; } /** * @export * @enum {string} */ export declare enum ApiHealthCheckHealthEnum { Available = "available", Unavailable = "unavailable", Unreachable = "unreachable", NoSmashConfigured = "no_smash_configured" }