35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
/**
|
|
* Cardano Wallet Backend API
|
|
* <p align=\"right\"><img style=\"position: relative; top: -10em; margin-bottom: -12em;\" width=\"20%\" src=\"https://cardanodocs.com/img/cardano.png\"></img></p>
|
|
*
|
|
* 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"
|
|
}
|