umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
28 lines (27 loc) • 1.16 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.
*/
/**
*
* @export
*/
export declare const HealthStatusModel: {
readonly Healthy: "Healthy";
readonly Unhealthy: "Unhealthy";
readonly Rebuilding: "Rebuilding";
readonly Corrupt: "Corrupt";
};
export type HealthStatusModel = typeof HealthStatusModel[keyof typeof HealthStatusModel];
export declare function instanceOfHealthStatusModel(value: any): boolean;
export declare function HealthStatusModelFromJSON(json: any): HealthStatusModel;
export declare function HealthStatusModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthStatusModel;
export declare function HealthStatusModelToJSON(value?: HealthStatusModel | null): any;
export declare function HealthStatusModelToJSONTyped(value: any, ignoreDiscriminator: boolean): HealthStatusModel;