UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.33 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 { TelemetryLevelModel } from './TelemetryLevelModel'; /** * * @export * @interface TelemetryResponseModel */ export interface TelemetryResponseModel { /** * * @type {TelemetryLevelModel} * @memberof TelemetryResponseModel */ telemetryLevel: TelemetryLevelModel; } /** * Check if a given object implements the TelemetryResponseModel interface. */ export declare function instanceOfTelemetryResponseModel(value: object): value is TelemetryResponseModel; export declare function TelemetryResponseModelFromJSON(json: any): TelemetryResponseModel; export declare function TelemetryResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelemetryResponseModel; export declare function TelemetryResponseModelToJSON(json: any): TelemetryResponseModel; export declare function TelemetryResponseModelToJSONTyped(value?: TelemetryResponseModel | null, ignoreDiscriminator?: boolean): any;