/** * 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. */ import { HealthcheckStatus } from './HealthcheckStatus'; /** * * @export * @interface HealthcheckResponse */ export interface HealthcheckResponse { /** * * @type {HealthcheckStatus} * @memberof HealthcheckResponse */ status: HealthcheckStatus; } export declare function HealthcheckResponseFromJSON(json: any): HealthcheckResponse; export declare function HealthcheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthcheckResponse; export declare function HealthcheckResponseToJSON(value?: HealthcheckResponse | null): any;