UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

54 lines 1.8 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * 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.SSOSecurityLevel = void 0; exports.instanceOfSSOSecurityLevel = instanceOfSSOSecurityLevel; exports.SSOSecurityLevelFromJSON = SSOSecurityLevelFromJSON; exports.SSOSecurityLevelFromJSONTyped = SSOSecurityLevelFromJSONTyped; exports.SSOSecurityLevelToJSON = SSOSecurityLevelToJSON; exports.SSOSecurityLevelToJSONTyped = SSOSecurityLevelToJSONTyped; /** * * @export * @enum {string} */ var SSOSecurityLevel; (function (SSOSecurityLevel) { SSOSecurityLevel[SSOSecurityLevel["NUMBER_0"] = 0] = "NUMBER_0"; SSOSecurityLevel[SSOSecurityLevel["NUMBER_1"] = 1] = "NUMBER_1"; })(SSOSecurityLevel || (exports.SSOSecurityLevel = SSOSecurityLevel = {})); function instanceOfSSOSecurityLevel(value) { for (const key in SSOSecurityLevel) { if (Object.prototype.hasOwnProperty.call(SSOSecurityLevel, key)) { if (SSOSecurityLevel[key] === value) { return true; } } } return false; } function SSOSecurityLevelFromJSON(json) { return SSOSecurityLevelFromJSONTyped(json, false); } function SSOSecurityLevelFromJSONTyped(json, ignoreDiscriminator) { return json; } function SSOSecurityLevelToJSON(value) { return value; } function SSOSecurityLevelToJSONTyped(value, ignoreDiscriminator) { return value; } //# sourceMappingURL=SSOSecurityLevel.js.map