cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
75 lines (74 loc) • 1.74 kB
TypeScript
/**
* CWMS Data API
* CWMS REST API for Data Retrieval
*
* The version of the OpenAPI document: 2.3.2-2025.03.19
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { StreamLocationNode } from './StreamLocationNode';
/**
*
* @export
* @interface StreamLocation
*/
export interface StreamLocation {
/**
*
* @type {StreamLocationNode}
* @memberof StreamLocation
*/
streamLocationNode: StreamLocationNode;
/**
*
* @type {number}
* @memberof StreamLocation
*/
publishedStation?: number;
/**
*
* @type {number}
* @memberof StreamLocation
*/
navigationStation?: number;
/**
*
* @type {number}
* @memberof StreamLocation
*/
lowestMeasurableStage?: number;
/**
*
* @type {number}
* @memberof StreamLocation
*/
totalDrainageArea?: number;
/**
*
* @type {number}
* @memberof StreamLocation
*/
ungagedDrainageArea?: number;
/**
*
* @type {string}
* @memberof StreamLocation
*/
areaUnits?: string;
/**
*
* @type {string}
* @memberof StreamLocation
*/
stageUnits?: string;
}
/**
* Check if a given object implements the StreamLocation interface.
*/
export declare function instanceOfStreamLocation(value: object): boolean;
export declare function StreamLocationFromJSON(json: any): StreamLocation;
export declare function StreamLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamLocation;
export declare function StreamLocationToJSON(value?: StreamLocation | null): any;