fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
55 lines • 2.22 kB
JavaScript
;
/* 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.RepeatCommentHandlingAction = void 0;
exports.instanceOfRepeatCommentHandlingAction = instanceOfRepeatCommentHandlingAction;
exports.RepeatCommentHandlingActionFromJSON = RepeatCommentHandlingActionFromJSON;
exports.RepeatCommentHandlingActionFromJSONTyped = RepeatCommentHandlingActionFromJSONTyped;
exports.RepeatCommentHandlingActionToJSON = RepeatCommentHandlingActionToJSON;
exports.RepeatCommentHandlingActionToJSONTyped = RepeatCommentHandlingActionToJSONTyped;
/**
*
* @export
* @enum {string}
*/
var RepeatCommentHandlingAction;
(function (RepeatCommentHandlingAction) {
RepeatCommentHandlingAction[RepeatCommentHandlingAction["NUMBER_0"] = 0] = "NUMBER_0";
RepeatCommentHandlingAction[RepeatCommentHandlingAction["NUMBER_1"] = 1] = "NUMBER_1";
RepeatCommentHandlingAction[RepeatCommentHandlingAction["NUMBER_2"] = 2] = "NUMBER_2";
})(RepeatCommentHandlingAction || (exports.RepeatCommentHandlingAction = RepeatCommentHandlingAction = {}));
function instanceOfRepeatCommentHandlingAction(value) {
for (const key in RepeatCommentHandlingAction) {
if (Object.prototype.hasOwnProperty.call(RepeatCommentHandlingAction, key)) {
if (RepeatCommentHandlingAction[key] === value) {
return true;
}
}
}
return false;
}
function RepeatCommentHandlingActionFromJSON(json) {
return RepeatCommentHandlingActionFromJSONTyped(json, false);
}
function RepeatCommentHandlingActionFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function RepeatCommentHandlingActionToJSON(value) {
return value;
}
function RepeatCommentHandlingActionToJSONTyped(value, ignoreDiscriminator) {
return value;
}
//# sourceMappingURL=RepeatCommentHandlingAction.js.map