/**
 * 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 PumpLocation
 */
export interface PumpLocation {
    /**
     *
     * @type {CwmsId}
     * @memberof PumpLocation
     */
    pumpIn?: CwmsId;
    /**
     *
     * @type {CwmsId}
     * @memberof PumpLocation
     */
    pumpOut?: CwmsId;
    /**
     *
     * @type {CwmsId}
     * @memberof PumpLocation
     */
    pumpBelow?: CwmsId;
}
export declare function PumpLocationFromJSON(json: any): PumpLocation;
export declare function PumpLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PumpLocation;
export declare function PumpLocationToJSON(value?: PumpLocation | null): any;
