UNPKG

umbraco-management-api-client

Version:

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

56 lines (55 loc) 1.65 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.LogLevelModel = void 0; exports.instanceOfLogLevelModel = instanceOfLogLevelModel; exports.LogLevelModelFromJSON = LogLevelModelFromJSON; exports.LogLevelModelFromJSONTyped = LogLevelModelFromJSONTyped; exports.LogLevelModelToJSON = LogLevelModelToJSON; exports.LogLevelModelToJSONTyped = LogLevelModelToJSONTyped; /** * * @export */ exports.LogLevelModel = { Verbose: 'Verbose', Debug: 'Debug', Information: 'Information', Warning: 'Warning', Error: 'Error', Fatal: 'Fatal' }; function instanceOfLogLevelModel(value) { for (const key in exports.LogLevelModel) { if (Object.prototype.hasOwnProperty.call(exports.LogLevelModel, key)) { if (exports.LogLevelModel[key] === value) { return true; } } } return false; } function LogLevelModelFromJSON(json) { return LogLevelModelFromJSONTyped(json, false); } function LogLevelModelFromJSONTyped(json, ignoreDiscriminator) { return json; } function LogLevelModelToJSON(value) { return value; } function LogLevelModelToJSONTyped(value, ignoreDiscriminator) { return value; }