UNPKG

cwmsjs

Version:

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

48 lines (47 loc) 1.35 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 { Location } from './Location'; /** * * @export * @interface WaterSupplyPump */ export interface WaterSupplyPump { /** * * @type {Location} * @memberof WaterSupplyPump */ pumpLocation: Location; /** * * @type {string} * @memberof WaterSupplyPump */ pumpType: WaterSupplyPumpPumpTypeEnum; } /** * @export */ export declare const WaterSupplyPumpPumpTypeEnum: { readonly In: "IN"; readonly Out: "OUT"; readonly Below: "BELOW"; }; export type WaterSupplyPumpPumpTypeEnum = typeof WaterSupplyPumpPumpTypeEnum[keyof typeof WaterSupplyPumpPumpTypeEnum]; /** * Check if a given object implements the WaterSupplyPump interface. */ export declare function instanceOfWaterSupplyPump(value: object): boolean; export declare function WaterSupplyPumpFromJSON(json: any): WaterSupplyPump; export declare function WaterSupplyPumpFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaterSupplyPump; export declare function WaterSupplyPumpToJSON(value?: WaterSupplyPump | null): any;