cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
44 lines (43 loc) • 1.06 kB
TypeScript
/**
* 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 { Location } from './Location';
/**
*
* @export
* @interface WaterSupplyPump
*/
export interface WaterSupplyPump {
/**
*
* @type {Location}
* @memberof WaterSupplyPump
*/
pumpLocation: Location;
/**
*
* @type {string}
* @memberof WaterSupplyPump
*/
pumpType: WaterSupplyPumpPumpTypeEnum;
}
/**
* @export
* @enum {string}
*/
export declare enum WaterSupplyPumpPumpTypeEnum {
In = "IN",
Out = "OUT",
Below = "BELOW"
}
export declare function WaterSupplyPumpFromJSON(json: any): WaterSupplyPump;
export declare function WaterSupplyPumpFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaterSupplyPump;
export declare function WaterSupplyPumpToJSON(value?: WaterSupplyPump | null): any;