umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.35 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
* @interface HealthCheckModel
*/
export interface HealthCheckModel {
/**
*
* @type {string}
* @memberof HealthCheckModel
*/
id: string;
/**
*
* @type {string}
* @memberof HealthCheckModel
*/
name: string;
/**
*
* @type {string}
* @memberof HealthCheckModel
*/
description?: string | null;
}
/**
* Check if a given object implements the HealthCheckModel interface.
*/
export declare function instanceOfHealthCheckModel(value: object): value is HealthCheckModel;
export declare function HealthCheckModelFromJSON(json: any): HealthCheckModel;
export declare function HealthCheckModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckModel;
export declare function HealthCheckModelToJSON(json: any): HealthCheckModel;
export declare function HealthCheckModelToJSONTyped(value?: HealthCheckModel | null, ignoreDiscriminator?: boolean): any;