cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
87 lines (86 loc) • 1.94 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 { VerticalDatumInfo } from './VerticalDatumInfo';
/**
*
* @export
* @interface ExpressionRating
*/
export interface ExpressionRating {
/**
*
* @type {string}
* @memberof ExpressionRating
*/
officeId?: string;
/**
*
* @type {string}
* @memberof ExpressionRating
*/
ratingSpecId?: string;
/**
*
* @type {string}
* @memberof ExpressionRating
*/
unitsId?: string;
/**
*
* @type {boolean}
* @memberof ExpressionRating
*/
active?: boolean;
/**
*
* @type {Date}
* @memberof ExpressionRating
*/
effectiveDate?: Date;
/**
*
* @type {Date}
* @memberof ExpressionRating
*/
createDate?: Date;
/**
*
* @type {Date}
* @memberof ExpressionRating
*/
transitionDate?: Date;
/**
*
* @type {string}
* @memberof ExpressionRating
*/
description?: string;
/**
*
* @type {VerticalDatumInfo}
* @memberof ExpressionRating
*/
verticalDatumInfo?: VerticalDatumInfo;
/**
*
* @type {string}
* @memberof ExpressionRating
*/
expression?: string;
}
/**
* Check if a given object implements the ExpressionRating interface.
*/
export declare function instanceOfExpressionRating(value: object): boolean;
export declare function ExpressionRatingFromJSON(json: any): ExpressionRating;
export declare function ExpressionRatingFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressionRating;
export declare function ExpressionRatingToJSON(value?: ExpressionRating | null): any;