cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
54 lines (53 loc) • 1.13 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 { CwmsId } from './CwmsId';
import { Location } from './Location';
/**
*
* @export
* @interface Outlet
*/
export interface Outlet {
/**
*
* @type {CwmsId}
* @memberof Outlet
*/
projectId: CwmsId;
/**
*
* @type {Location}
* @memberof Outlet
*/
location: Location;
/**
*
* @type {CwmsId}
* @memberof Outlet
*/
ratingGroupId?: CwmsId;
/**
*
* @type {string}
* @memberof Outlet
*/
ratingSpecId?: string;
/**
*
* @type {CwmsId}
* @memberof Outlet
*/
ratingCategoryId?: CwmsId;
}
export declare function OutletFromJSON(json: any): Outlet;
export declare function OutletFromJSONTyped(json: any, ignoreDiscriminator: boolean): Outlet;
export declare function OutletToJSON(value?: Outlet | null): any;