UNPKG

cwmsjs

Version:

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

59 lines (58 loc) 1.39 kB
/** * 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'; /** * * @export * @interface StreamNode */ export interface StreamNode { /** * * @type {CwmsId} * @memberof StreamNode */ streamId: CwmsId; /** * * @type {string} * @memberof StreamNode */ bank?: StreamNodeBankEnum; /** * * @type {number} * @memberof StreamNode */ station?: number; /** * * @type {string} * @memberof StreamNode */ stationUnits?: string; } /** * @export */ export declare const StreamNodeBankEnum: { readonly L: "L"; readonly R: "R"; }; export type StreamNodeBankEnum = typeof StreamNodeBankEnum[keyof typeof StreamNodeBankEnum]; /** * Check if a given object implements the StreamNode interface. */ export declare function instanceOfStreamNode(value: object): boolean; export declare function StreamNodeFromJSON(json: any): StreamNode; export declare function StreamNodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamNode; export declare function StreamNodeToJSON(value?: StreamNode | null): any;