umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
34 lines (33 loc) • 1.36 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 { RuntimeLevelModel } from './RuntimeLevelModel';
/**
*
* @export
* @interface ServerStatusResponseModel
*/
export interface ServerStatusResponseModel {
/**
*
* @type {RuntimeLevelModel}
* @memberof ServerStatusResponseModel
*/
serverStatus: RuntimeLevelModel;
}
/**
* Check if a given object implements the ServerStatusResponseModel interface.
*/
export declare function instanceOfServerStatusResponseModel(value: object): value is ServerStatusResponseModel;
export declare function ServerStatusResponseModelFromJSON(json: any): ServerStatusResponseModel;
export declare function ServerStatusResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerStatusResponseModel;
export declare function ServerStatusResponseModelToJSON(json: any): ServerStatusResponseModel;
export declare function ServerStatusResponseModelToJSONTyped(value?: ServerStatusResponseModel | null, ignoreDiscriminator?: boolean): any;