UNPKG

umbraco-management-api-client

Version:

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

53 lines (52 loc) 1.69 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.OutOfDateTypeModel = void 0; exports.instanceOfOutOfDateTypeModel = instanceOfOutOfDateTypeModel; exports.OutOfDateTypeModelFromJSON = OutOfDateTypeModelFromJSON; exports.OutOfDateTypeModelFromJSONTyped = OutOfDateTypeModelFromJSONTyped; exports.OutOfDateTypeModelToJSON = OutOfDateTypeModelToJSON; exports.OutOfDateTypeModelToJSONTyped = OutOfDateTypeModelToJSONTyped; /** * * @export */ exports.OutOfDateTypeModel = { OutOfDate: 'OutOfDate', Current: 'Current', Unknown: 'Unknown' }; function instanceOfOutOfDateTypeModel(value) { for (const key in exports.OutOfDateTypeModel) { if (Object.prototype.hasOwnProperty.call(exports.OutOfDateTypeModel, key)) { if (exports.OutOfDateTypeModel[key] === value) { return true; } } } return false; } function OutOfDateTypeModelFromJSON(json) { return OutOfDateTypeModelFromJSONTyped(json, false); } function OutOfDateTypeModelFromJSONTyped(json, ignoreDiscriminator) { return json; } function OutOfDateTypeModelToJSON(value) { return value; } function OutOfDateTypeModelToJSONTyped(value, ignoreDiscriminator) { return value; }