/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Jira instance health check results. Deprecated and no longer returned. * @export * @interface HealthCheckResult */ export interface HealthCheckResult { /** * The name of the Jira health check item. * @type {string} * @memberof HealthCheckResult */ name?: string; /** * The description of the Jira health check item. * @type {string} * @memberof HealthCheckResult */ description?: string; /** * Indicates whether the Jira health check item passed or failed. * @type {boolean} * @memberof HealthCheckResult */ passed?: boolean; } export declare function HealthCheckResultFromJSON(json: any): HealthCheckResult; export declare function HealthCheckResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckResult; export declare function HealthCheckResultToJSON(value?: HealthCheckResult): any;