umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
34 lines (33 loc) • 1.6 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 { ServerTroubleshootingResponseModelItemsInner } from './ServerTroubleshootingResponseModelItemsInner';
/**
*
* @export
* @interface ServerTroubleshootingResponseModel
*/
export interface ServerTroubleshootingResponseModel {
/**
*
* @type {Array<ServerTroubleshootingResponseModelItemsInner>}
* @memberof ServerTroubleshootingResponseModel
*/
items: Array<ServerTroubleshootingResponseModelItemsInner>;
}
/**
* Check if a given object implements the ServerTroubleshootingResponseModel interface.
*/
export declare function instanceOfServerTroubleshootingResponseModel(value: object): value is ServerTroubleshootingResponseModel;
export declare function ServerTroubleshootingResponseModelFromJSON(json: any): ServerTroubleshootingResponseModel;
export declare function ServerTroubleshootingResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerTroubleshootingResponseModel;
export declare function ServerTroubleshootingResponseModelToJSON(json: any): ServerTroubleshootingResponseModel;
export declare function ServerTroubleshootingResponseModelToJSONTyped(value?: ServerTroubleshootingResponseModel | null, ignoreDiscriminator?: boolean): any;