umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
40 lines (39 loc) • 1.47 kB
TypeScript
/**
* Umbraco Management API
* This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
*
* The version of the OpenAPI document: Latest
*
*
* 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 { HealthStatusModel } from './HealthStatusModel';
/**
*
* @export
* @interface HealthStatusResponseModel
*/
export interface HealthStatusResponseModel {
/**
*
* @type {HealthStatusModel}
* @memberof HealthStatusResponseModel
*/
status: HealthStatusModel;
/**
*
* @type {string}
* @memberof HealthStatusResponseModel
*/
message?: string | null;
}
/**
* Check if a given object implements the HealthStatusResponseModel interface.
*/
export declare function instanceOfHealthStatusResponseModel(value: object): value is HealthStatusResponseModel;
export declare function HealthStatusResponseModelFromJSON(json: any): HealthStatusResponseModel;
export declare function HealthStatusResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthStatusResponseModel;
export declare function HealthStatusResponseModelToJSON(json: any): HealthStatusResponseModel;
export declare function HealthStatusResponseModelToJSONTyped(value?: HealthStatusResponseModel | null, ignoreDiscriminator?: boolean): any;