UNPKG

cwmsjs

Version:

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

46 lines (45 loc) 1.22 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'; /** * * @export * @interface LocationsWithProjectKind */ export interface LocationsWithProjectKind { /** * * @type {string} * @memberof LocationsWithProjectKind */ kind?: LocationsWithProjectKindKindEnum; /** * * @type {Array<CwmsId>} * @memberof LocationsWithProjectKind */ locationIds?: Array<CwmsId>; } /** * @export * @enum {string} */ export declare enum LocationsWithProjectKindKindEnum { Embankment = "EMBANKMENT", Turbine = "TURBINE", Outlet = "OUTLET", Lock = "LOCK", Gate = "GATE" } export declare function LocationsWithProjectKindFromJSON(json: any): LocationsWithProjectKind; export declare function LocationsWithProjectKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationsWithProjectKind; export declare function LocationsWithProjectKindToJSON(value?: LocationsWithProjectKind | null): any;