umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
30 lines (29 loc) • 1.21 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.
*/
/**
*
* @export
*/
export declare const RuntimeLevelModel: {
readonly Unknown: "Unknown";
readonly Boot: "Boot";
readonly Install: "Install";
readonly Upgrade: "Upgrade";
readonly Run: "Run";
readonly BootFailed: "BootFailed";
};
export type RuntimeLevelModel = typeof RuntimeLevelModel[keyof typeof RuntimeLevelModel];
export declare function instanceOfRuntimeLevelModel(value: any): boolean;
export declare function RuntimeLevelModelFromJSON(json: any): RuntimeLevelModel;
export declare function RuntimeLevelModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuntimeLevelModel;
export declare function RuntimeLevelModelToJSON(value?: RuntimeLevelModel | null): any;
export declare function RuntimeLevelModelToJSONTyped(value: any, ignoreDiscriminator: boolean): RuntimeLevelModel;