/** * Athena API * REST API for the Athena system * * 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 HealthCheck */ export interface HealthCheck { /** * Health status * @type {string} * @memberof HealthCheck */ status: string; } /** * Check if a given object implements the HealthCheck interface. */ export declare function instanceOfHealthCheck(value: object): value is HealthCheck; export declare function HealthCheckFromJSON(json: any): HealthCheck; export declare function HealthCheckFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheck; export declare function HealthCheckToJSON(json: any): HealthCheck; export declare function HealthCheckToJSONTyped(value?: HealthCheck | null, ignoreDiscriminator?: boolean): any;