UNPKG

cwmsjs

Version:

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

58 lines (57 loc) 1.28 kB
/** * 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'; import type { 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; } /** * Check if a given object implements the Outlet interface. */ export declare function instanceOfOutlet(value: object): boolean; export declare function OutletFromJSON(json: any): Outlet; export declare function OutletFromJSONTyped(json: any, ignoreDiscriminator: boolean): Outlet; export declare function OutletToJSON(value?: Outlet | null): any;