UNPKG

cwmsjs

Version:

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

46 lines (45 loc) 1.77 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"); const CwmsId_1 = require("./CwmsId"); const LocationsWithProjectKind_1 = require("./LocationsWithProjectKind"); function ProjectChildLocationsFromJSON(json) { return ProjectChildLocationsFromJSONTyped(json, false); } exports.ProjectChildLocationsFromJSON = ProjectChildLocationsFromJSON; function ProjectChildLocationsFromJSONTyped(json, ignoreDiscriminator) { if ((json === undefined) || (json === null)) { return json; } return { 'projectId': !runtime_1.exists(json, 'project-id') ? undefined : CwmsId_1.CwmsIdFromJSON(json['project-id']), 'locationsByKind': !runtime_1.exists(json, 'locations-by-kind') ? undefined : (json['locations-by-kind'].map(LocationsWithProjectKind_1.LocationsWithProjectKindFromJSON)), }; } exports.ProjectChildLocationsFromJSONTyped = ProjectChildLocationsFromJSONTyped; function ProjectChildLocationsToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'project-id': CwmsId_1.CwmsIdToJSON(value.projectId), 'locations-by-kind': value.locationsByKind === undefined ? undefined : (value.locationsByKind.map(LocationsWithProjectKind_1.LocationsWithProjectKindToJSON)), }; } exports.ProjectChildLocationsToJSON = ProjectChildLocationsToJSON;