/** * 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 InlineResponse20016 */ export interface InlineResponse20016 { /** * * @type {string} * @memberof InlineResponse20016 */ health: InlineResponse20016HealthEnum; } /** * @export * @enum {string} */ export declare enum InlineResponse20016HealthEnum { Available = "available", Unavailable = "unavailable", Unreachable = "unreachable", NoSmashConfigured = "no_smash_configured" }