UNPKG

fastcomments-sdk

Version:

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

54 lines 2.04 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.CommentQuestionsRequired = void 0; exports.instanceOfCommentQuestionsRequired = instanceOfCommentQuestionsRequired; exports.CommentQuestionsRequiredFromJSON = CommentQuestionsRequiredFromJSON; exports.CommentQuestionsRequiredFromJSONTyped = CommentQuestionsRequiredFromJSONTyped; exports.CommentQuestionsRequiredToJSON = CommentQuestionsRequiredToJSON; exports.CommentQuestionsRequiredToJSONTyped = CommentQuestionsRequiredToJSONTyped; /** * * @export * @enum {string} */ var CommentQuestionsRequired; (function (CommentQuestionsRequired) { CommentQuestionsRequired[CommentQuestionsRequired["NUMBER_0"] = 0] = "NUMBER_0"; CommentQuestionsRequired[CommentQuestionsRequired["NUMBER_1"] = 1] = "NUMBER_1"; })(CommentQuestionsRequired || (exports.CommentQuestionsRequired = CommentQuestionsRequired = {})); function instanceOfCommentQuestionsRequired(value) { for (const key in CommentQuestionsRequired) { if (Object.prototype.hasOwnProperty.call(CommentQuestionsRequired, key)) { if (CommentQuestionsRequired[key] === value) { return true; } } } return false; } function CommentQuestionsRequiredFromJSON(json) { return CommentQuestionsRequiredFromJSONTyped(json, false); } function CommentQuestionsRequiredFromJSONTyped(json, ignoreDiscriminator) { return json; } function CommentQuestionsRequiredToJSON(value) { return value; } function CommentQuestionsRequiredToJSONTyped(value, ignoreDiscriminator) { return value; } //# sourceMappingURL=CommentQuestionsRequired.js.map