cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
64 lines (63 loc) • 1.5 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 { CwmsId } from './CwmsId';
import type { StreamLocationNode } from './StreamLocationNode';
/**
*
* @export
* @interface StreamReach
*/
export interface StreamReach {
/**
*
* @type {string}
* @memberof StreamReach
*/
comment?: string;
/**
*
* @type {StreamLocationNode}
* @memberof StreamReach
*/
downstreamNode: StreamLocationNode;
/**
*
* @type {StreamLocationNode}
* @memberof StreamReach
*/
upstreamNode: StreamLocationNode;
/**
*
* @type {CwmsId}
* @memberof StreamReach
*/
configurationId?: CwmsId;
/**
*
* @type {CwmsId}
* @memberof StreamReach
*/
streamId: CwmsId;
/**
*
* @type {CwmsId}
* @memberof StreamReach
*/
id: CwmsId;
}
/**
* Check if a given object implements the StreamReach interface.
*/
export declare function instanceOfStreamReach(value: object): boolean;
export declare function StreamReachFromJSON(json: any): StreamReach;
export declare function StreamReachFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamReach;
export declare function StreamReachToJSON(value?: StreamReach | null): any;