fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
54 lines • 1.49 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.SORTDIR = void 0;
exports.instanceOfSORTDIR = instanceOfSORTDIR;
exports.SORTDIRFromJSON = SORTDIRFromJSON;
exports.SORTDIRFromJSONTyped = SORTDIRFromJSONTyped;
exports.SORTDIRToJSON = SORTDIRToJSON;
exports.SORTDIRToJSONTyped = SORTDIRToJSONTyped;
/**
*
* @export
* @enum {string}
*/
var SORTDIR;
(function (SORTDIR) {
SORTDIR["ASC"] = "ASC";
SORTDIR["DESC"] = "DESC";
})(SORTDIR || (exports.SORTDIR = SORTDIR = {}));
function instanceOfSORTDIR(value) {
for (const key in SORTDIR) {
if (Object.prototype.hasOwnProperty.call(SORTDIR, key)) {
if (SORTDIR[key] === value) {
return true;
}
}
}
return false;
}
function SORTDIRFromJSON(json) {
return SORTDIRFromJSONTyped(json, false);
}
function SORTDIRFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function SORTDIRToJSON(value) {
return value;
}
function SORTDIRToJSONTyped(value, ignoreDiscriminator) {
return value;
}
//# sourceMappingURL=SORTDIR.js.map