cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
50 lines (49 loc) • 1.56 kB
TypeScript
/**
* CWMS Data API
* CWMS REST API for Data Retrieval
*
* The version of the OpenAPI document: 2.3.2-2025.03.19
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { CwmsId } from './CwmsId';
/**
*
* @export
* @interface LocationsWithProjectKind
*/
export interface LocationsWithProjectKind {
/**
*
* @type {string}
* @memberof LocationsWithProjectKind
*/
kind?: LocationsWithProjectKindKindEnum;
/**
*
* @type {Array<CwmsId>}
* @memberof LocationsWithProjectKind
*/
locationIds?: Array<CwmsId>;
}
/**
* @export
*/
export declare const LocationsWithProjectKindKindEnum: {
readonly Embankment: "EMBANKMENT";
readonly Turbine: "TURBINE";
readonly Outlet: "OUTLET";
readonly Lock: "LOCK";
readonly Gate: "GATE";
};
export type LocationsWithProjectKindKindEnum = typeof LocationsWithProjectKindKindEnum[keyof typeof LocationsWithProjectKindKindEnum];
/**
* Check if a given object implements the LocationsWithProjectKind interface.
*/
export declare function instanceOfLocationsWithProjectKind(value: object): boolean;
export declare function LocationsWithProjectKindFromJSON(json: any): LocationsWithProjectKind;
export declare function LocationsWithProjectKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationsWithProjectKind;
export declare function LocationsWithProjectKindToJSON(value?: LocationsWithProjectKind | null): any;