cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
38 lines (37 loc) • 1.22 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* CWMS Data API
* CWMS REST API for Data Retrieval
*
* The version of the OpenAPI document: 2.4.0-2026.3.16
*
*
* 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 });
/**
* Set of data for which a larger catalog can be built.
* @export
* @enum {string}
*/
var CatalogableEndpoint;
(function (CatalogableEndpoint) {
CatalogableEndpoint["Timeseries"] = "TIMESERIES";
CatalogableEndpoint["Locations"] = "LOCATIONS";
})(CatalogableEndpoint = exports.CatalogableEndpoint || (exports.CatalogableEndpoint = {}));
function CatalogableEndpointFromJSON(json) {
return CatalogableEndpointFromJSONTyped(json, false);
}
exports.CatalogableEndpointFromJSON = CatalogableEndpointFromJSON;
function CatalogableEndpointFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.CatalogableEndpointFromJSONTyped = CatalogableEndpointFromJSONTyped;
function CatalogableEndpointToJSON(value) {
return value;
}
exports.CatalogableEndpointToJSON = CatalogableEndpointToJSON;