cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
25 lines (24 loc) • 988 B
TypeScript
/**
* 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.
*/
import { ConstantLocationLevel } from './ConstantLocationLevel';
import { SeasonalLocationLevel } from './SeasonalLocationLevel';
import { TimeSeriesLocationLevel } from './TimeSeriesLocationLevel';
import { VirtualLocationLevel } from './VirtualLocationLevel';
/**
* @type LocationLevel
*
* @export
*/
export declare type LocationLevel = ConstantLocationLevel | SeasonalLocationLevel | TimeSeriesLocationLevel | VirtualLocationLevel;
export declare function LocationLevelFromJSON(json: any): LocationLevel;
export declare function LocationLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationLevel;
export declare function LocationLevelToJSON(value?: LocationLevel | null): any;