cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
40 lines (39 loc) • 1.13 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 { StreamNode } from './StreamNode';
/**
*
* @export
* @interface StreamLocationNode
*/
export interface StreamLocationNode {
/**
*
* @type {CwmsId}
* @memberof StreamLocationNode
*/
id: CwmsId;
/**
*
* @type {StreamNode}
* @memberof StreamLocationNode
*/
streamNode: StreamNode;
}
/**
* Check if a given object implements the StreamLocationNode interface.
*/
export declare function instanceOfStreamLocationNode(value: object): boolean;
export declare function StreamLocationNodeFromJSON(json: any): StreamLocationNode;
export declare function StreamLocationNodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamLocationNode;
export declare function StreamLocationNodeToJSON(value?: StreamLocationNode | null): any;