/**
 * OpenZeppelin Relayer API
 * OpenZeppelin Relayer API
 *
 * The version of the OpenAPI document: 1.3.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 type { ComponentStatus } from './component-status';
import type { Components } from './components';
/**
 * Complete readiness response.
 * @export
 * @interface ReadinessResponse
 */
export interface ReadinessResponse {
    /**
     *
     * @type {Components}
     * @memberof ReadinessResponse
     */
    'components': Components;
    /**
     *
     * @type {boolean}
     * @memberof ReadinessResponse
     */
    'ready': boolean;
    /**
     *
     * @type {string}
     * @memberof ReadinessResponse
     */
    'reason'?: string;
    /**
     *
     * @type {ComponentStatus}
     * @memberof ReadinessResponse
     */
    'status': ComponentStatus;
    /**
     *
     * @type {string}
     * @memberof ReadinessResponse
     */
    'timestamp': string;
}
