UNPKG

cwmsjs

Version:

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

65 lines (64 loc) 1.28 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'; /** * * @export * @interface Basin */ export interface Basin { /** * * @type {CwmsId} * @memberof Basin */ basinId: CwmsId; /** * * @type {number} * @memberof Basin */ sortOrder?: number; /** * * @type {number} * @memberof Basin */ totalDrainageArea?: number; /** * * @type {number} * @memberof Basin */ contributingDrainageArea?: number; /** * * @type {CwmsId} * @memberof Basin */ parentBasinId?: CwmsId; /** * * @type {string} * @memberof Basin */ areaUnit?: string; /** * * @type {CwmsId} * @memberof Basin */ primaryStreamId?: CwmsId; } export declare function BasinFromJSON(json: any): Basin; export declare function BasinFromJSONTyped(json: any, ignoreDiscriminator: boolean): Basin; export declare function BasinToJSON(value?: Basin | null): any;