UNPKG

cwmsjs

Version:

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

60 lines (59 loc) 1.35 kB
/** * 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 { CwmsId } from './CwmsId'; import { 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; } export declare function StreamReachFromJSON(json: any): StreamReach; export declare function StreamReachFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamReach; export declare function StreamReachToJSON(value?: StreamReach | null): any;