cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
51 lines (50 loc) • 1.37 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 { PumpLocation } from './PumpLocation';
import { PumpTransfer } from './PumpTransfer';
import { WaterUser } from './WaterUser';
/**
*
* @export
* @interface WaterSupplyAccounting
*/
export interface WaterSupplyAccounting {
/**
*
* @type {string}
* @memberof WaterSupplyAccounting
*/
contractName: string;
/**
*
* @type {WaterUser}
* @memberof WaterSupplyAccounting
*/
waterUser: WaterUser;
/**
*
* @type {PumpLocation}
* @memberof WaterSupplyAccounting
*/
pumpLocations: PumpLocation;
/**
*
* @type {{ [key: string]: Array<PumpTransfer>; }}
* @memberof WaterSupplyAccounting
*/
pumpAccounting?: {
[key: string]: Array<PumpTransfer>;
};
}
export declare function WaterSupplyAccountingFromJSON(json: any): WaterSupplyAccounting;
export declare function WaterSupplyAccountingFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaterSupplyAccounting;
export declare function WaterSupplyAccountingToJSON(value?: WaterSupplyAccounting | null): any;