UNPKG

cwmsjs

Version:

CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps

54 lines (53 loc) 1.96 kB
"use strict"; /* 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 }); const runtime_1 = require("../runtime"); function ForecastSpecFromJSON(json) { return ForecastSpecFromJSONTyped(json, false); } exports.ForecastSpecFromJSON = ForecastSpecFromJSON; function ForecastSpecFromJSONTyped(json, ignoreDiscriminator) { if ((json === undefined) || (json === null)) { return json; } return { 'officeId': json['office-id'], 'specId': !runtime_1.exists(json, 'spec-id') ? undefined : json['spec-id'], 'designator': !runtime_1.exists(json, 'designator') ? undefined : json['designator'], 'locationId': !runtime_1.exists(json, 'location-id') ? undefined : json['location-id'], 'sourceEntityId': !runtime_1.exists(json, 'source-entity-id') ? undefined : json['source-entity-id'], 'description': !runtime_1.exists(json, 'description') ? undefined : json['description'], 'timeSeriesIds': !runtime_1.exists(json, 'time-series-ids') ? undefined : json['time-series-ids'], }; } exports.ForecastSpecFromJSONTyped = ForecastSpecFromJSONTyped; function ForecastSpecToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'office-id': value.officeId, 'spec-id': value.specId, 'designator': value.designator, 'location-id': value.locationId, 'source-entity-id': value.sourceEntityId, 'description': value.description, 'time-series-ids': value.timeSeriesIds, }; } exports.ForecastSpecToJSON = ForecastSpecToJSON;