/** * EMIL AccountService * The EMIL AccountService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { InlineResponse200 } from '../models'; /** * HealthApi - axios parameter creator * @export */ export declare const HealthApiAxiosParamCreator: (configuration?: Configuration) => { /** * Returns the health status of the account service. This endpoint is used to monitor the operational status of the account service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. * @summary Health Check * @param {*} [options] Override http request option. * @throws {RequiredError} */ check: (options?: AxiosRequestConfig) => Promise; }; /** * HealthApi - functional programming interface * @export */ export declare const HealthApiFp: (configuration?: Configuration) => { /** * Returns the health status of the account service. This endpoint is used to monitor the operational status of the account service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. * @summary Health Check * @param {*} [options] Override http request option. * @throws {RequiredError} */ check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * HealthApi - factory interface * @export */ export declare const HealthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Returns the health status of the account service. This endpoint is used to monitor the operational status of the account service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. * @summary Health Check * @param {*} [options] Override http request option. * @throws {RequiredError} */ check(options?: any): AxiosPromise; }; /** * HealthApi - object-oriented interface * @export * @class HealthApi * @extends {BaseAPI} */ export declare class HealthApi extends BaseAPI { /** * Returns the health status of the account service. This endpoint is used to monitor the operational status of the account service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. * @summary Health Check * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof HealthApi */ check(options?: AxiosRequestConfig): Promise>; }