UNPKG

cwmsjs

Version:

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

116 lines (115 loc) 2.59 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'; import { LookupType } from './LookupType'; import { WaterSupplyPump } from './WaterSupplyPump'; import { WaterUser } from './WaterUser'; /** * * @export * @interface WaterUserContract */ export interface WaterUserContract { /** * Owning office of object. * @type {string} * @memberof WaterUserContract */ officeId: string; /** * * @type {WaterUser} * @memberof WaterUserContract */ waterUser: WaterUser; /** * * @type {CwmsId} * @memberof WaterUserContract */ contractId: CwmsId; /** * * @type {LookupType} * @memberof WaterUserContract */ contractType: LookupType; /** * * @type {Date} * @memberof WaterUserContract */ contractEffectiveDate: Date; /** * * @type {Date} * @memberof WaterUserContract */ contractExpirationDate: Date; /** * * @type {number} * @memberof WaterUserContract */ contractedStorage: number; /** * * @type {number} * @memberof WaterUserContract */ initialUseAllocation: number; /** * * @type {number} * @memberof WaterUserContract */ futureUseAllocation: number; /** * * @type {string} * @memberof WaterUserContract */ storageUnitsId: string; /** * * @type {number} * @memberof WaterUserContract */ futureUsePercentActivated: number; /** * * @type {number} * @memberof WaterUserContract */ totalAllocPercentActivated: number; /** * * @type {WaterSupplyPump} * @memberof WaterUserContract */ pumpOutLocation?: WaterSupplyPump; /** * * @type {WaterSupplyPump} * @memberof WaterUserContract */ pumpOutBelowLocation?: WaterSupplyPump; /** * * @type {WaterSupplyPump} * @memberof WaterUserContract */ pumpInLocation?: WaterSupplyPump; } export declare function WaterUserContractFromJSON(json: any): WaterUserContract; export declare function WaterUserContractFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaterUserContract; export declare function WaterUserContractToJSON(value?: WaterUserContract | null): any;