cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
41 lines (40 loc) • 1.12 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 { RATING } from './RATING';
/**
*
* @export
* @interface LocationLevelConstituent
*/
export interface LocationLevelConstituent extends RATING {
/**
*
* @type {string}
* @memberof LocationLevelConstituent
*/
attributeId?: string;
/**
*
* @type {number}
* @memberof LocationLevelConstituent
*/
attributeValue?: number;
/**
*
* @type {string}
* @memberof LocationLevelConstituent
*/
attributeUnits?: string;
}
export declare function LocationLevelConstituentFromJSON(json: any): LocationLevelConstituent;
export declare function LocationLevelConstituentFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationLevelConstituent;
export declare function LocationLevelConstituentToJSON(value?: LocationLevelConstituent | null): any;