fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
56 lines • 1.98 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.UsersListLocation = void 0;
exports.instanceOfUsersListLocation = instanceOfUsersListLocation;
exports.UsersListLocationFromJSON = UsersListLocationFromJSON;
exports.UsersListLocationFromJSONTyped = UsersListLocationFromJSONTyped;
exports.UsersListLocationToJSON = UsersListLocationToJSON;
exports.UsersListLocationToJSONTyped = UsersListLocationToJSONTyped;
/**
*
* @export
* @enum {string}
*/
var UsersListLocation;
(function (UsersListLocation) {
UsersListLocation[UsersListLocation["NUMBER_0"] = 0] = "NUMBER_0";
UsersListLocation[UsersListLocation["NUMBER_1"] = 1] = "NUMBER_1";
UsersListLocation[UsersListLocation["NUMBER_2"] = 2] = "NUMBER_2";
UsersListLocation[UsersListLocation["NUMBER_3"] = 3] = "NUMBER_3";
})(UsersListLocation || (exports.UsersListLocation = UsersListLocation = {}));
function instanceOfUsersListLocation(value) {
for (const key in UsersListLocation) {
if (Object.prototype.hasOwnProperty.call(UsersListLocation, key)) {
if (UsersListLocation[key] === value) {
return true;
}
}
}
return false;
}
function UsersListLocationFromJSON(json) {
return UsersListLocationFromJSONTyped(json, false);
}
function UsersListLocationFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function UsersListLocationToJSON(value) {
return value;
}
function UsersListLocationToJSONTyped(value, ignoreDiscriminator) {
return value;
}
//# sourceMappingURL=UsersListLocation.js.map