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.ImportedSiteType = void 0; exports.instanceOfImportedSiteType = instanceOfImportedSiteType; exports.ImportedSiteTypeFromJSON = ImportedSiteTypeFromJSON; exports.ImportedSiteTypeFromJSONTyped = ImportedSiteTypeFromJSONTyped; exports.ImportedSiteTypeToJSON = ImportedSiteTypeToJSON; exports.ImportedSiteTypeToJSONTyped = ImportedSiteTypeToJSONTyped; /** * * @export * @enum {string} */ var ImportedSiteType; (function (ImportedSiteType) { ImportedSiteType[ImportedSiteType["NUMBER_0"] = 0] = "NUMBER_0"; ImportedSiteType[ImportedSiteType["NUMBER_1"] = 1] = "NUMBER_1"; })(ImportedSiteType || (exports.ImportedSiteType = ImportedSiteType = {})); function instanceOfImportedSiteType(value) { for (const key in ImportedSiteType) { if (Object.prototype.hasOwnProperty.call(ImportedSiteType, key)) { if (ImportedSiteType[key] === value) { return true; } } } return false; } function ImportedSiteTypeFromJSON(json) { return ImportedSiteTypeFromJSONTyped(json, false); } function ImportedSiteTypeFromJSONTyped(json, ignoreDiscriminator) { return json; } function ImportedSiteTypeToJSON(value) { return value; } function ImportedSiteTypeToJSONTyped(value, ignoreDiscriminator) { return value; } //# sourceMappingURL=ImportedSiteType.js.map