UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

40 lines (39 loc) 1.7 kB
/** * 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 { HealthCheckGroupPresentationModelChecksInner } from './HealthCheckGroupPresentationModelChecksInner'; /** * * @export * @interface HealthCheckGroupPresentationModel */ export interface HealthCheckGroupPresentationModel { /** * * @type {string} * @memberof HealthCheckGroupPresentationModel */ name: string; /** * * @type {Array<HealthCheckGroupPresentationModelChecksInner>} * @memberof HealthCheckGroupPresentationModel */ checks: Array<HealthCheckGroupPresentationModelChecksInner>; } /** * Check if a given object implements the HealthCheckGroupPresentationModel interface. */ export declare function instanceOfHealthCheckGroupPresentationModel(value: object): value is HealthCheckGroupPresentationModel; export declare function HealthCheckGroupPresentationModelFromJSON(json: any): HealthCheckGroupPresentationModel; export declare function HealthCheckGroupPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckGroupPresentationModel; export declare function HealthCheckGroupPresentationModelToJSON(json: any): HealthCheckGroupPresentationModel; export declare function HealthCheckGroupPresentationModelToJSONTyped(value?: HealthCheckGroupPresentationModel | null, ignoreDiscriminator?: boolean): any;