UNPKG

cwmsjs

Version:

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

131 lines (130 loc) 2.42 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 { Location } from './Location'; /** * * @export * @interface Project */ export interface Project { /** * * @type {Location} * @memberof Project */ location?: Location; /** * * @type {number} * @memberof Project */ federalCost?: number; /** * * @type {number} * @memberof Project */ nonFederalCost?: number; /** * * @type {Date} * @memberof Project */ costYear?: Date; /** * * @type {string} * @memberof Project */ costUnit?: string; /** * * @type {number} * @memberof Project */ federalOAndMCost?: number; /** * * @type {number} * @memberof Project */ nonFederalOAndMCost?: number; /** * * @type {string} * @memberof Project */ authorizingLaw?: string; /** * * @type {string} * @memberof Project */ projectOwner?: string; /** * * @type {string} * @memberof Project */ hydropowerDesc?: string; /** * * @type {string} * @memberof Project */ sedimentationDesc?: string; /** * * @type {string} * @memberof Project */ downstreamUrbanDesc?: string; /** * * @type {string} * @memberof Project */ bankFullCapacityDesc?: string; /** * * @type {Location} * @memberof Project */ pumpBackLocation?: Location; /** * * @type {Location} * @memberof Project */ nearGageLocation?: Location; /** * * @type {Date} * @memberof Project */ yieldTimeFrameStart?: Date; /** * * @type {Date} * @memberof Project */ yieldTimeFrameEnd?: Date; /** * * @type {string} * @memberof Project */ projectRemarks?: string; } export declare function ProjectFromJSON(json: any): Project; export declare function ProjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): Project; export declare function ProjectToJSON(value?: Project | null): any;