umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
40 lines (39 loc) • 1.81 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 { HealthCheckWithResultPresentationModelResultsInner } from './HealthCheckWithResultPresentationModelResultsInner';
/**
*
* @export
* @interface HealthCheckWithResultPresentationModel
*/
export interface HealthCheckWithResultPresentationModel {
/**
*
* @type {string}
* @memberof HealthCheckWithResultPresentationModel
*/
id: string;
/**
*
* @type {Array<HealthCheckWithResultPresentationModelResultsInner>}
* @memberof HealthCheckWithResultPresentationModel
*/
results?: Array<HealthCheckWithResultPresentationModelResultsInner> | null;
}
/**
* Check if a given object implements the HealthCheckWithResultPresentationModel interface.
*/
export declare function instanceOfHealthCheckWithResultPresentationModel(value: object): value is HealthCheckWithResultPresentationModel;
export declare function HealthCheckWithResultPresentationModelFromJSON(json: any): HealthCheckWithResultPresentationModel;
export declare function HealthCheckWithResultPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckWithResultPresentationModel;
export declare function HealthCheckWithResultPresentationModelToJSON(json: any): HealthCheckWithResultPresentationModel;
export declare function HealthCheckWithResultPresentationModelToJSONTyped(value?: HealthCheckWithResultPresentationModel | null, ignoreDiscriminator?: boolean): any;