cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
99 lines (98 loc) • 2.05 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 TableRating
*/
export interface TableRating {
/**
*
* @type {string}
* @memberof TableRating
*/
officeId?: string;
/**
*
* @type {string}
* @memberof TableRating
*/
ratingSpecId?: string;
/**
*
* @type {string}
* @memberof TableRating
*/
unitsId?: string;
/**
*
* @type {boolean}
* @memberof TableRating
*/
active?: boolean;
/**
*
* @type {Date}
* @memberof TableRating
*/
effectiveDate?: Date;
/**
*
* @type {Date}
* @memberof TableRating
*/
createDate?: Date;
/**
*
* @type {Date}
* @memberof TableRating
*/
transitionDate?: Date;
/**
*
* @type {string}
* @memberof TableRating
*/
description?: string;
/**
*
* @type {VerticalDatumInfo}
* @memberof TableRating
*/
verticalDatumInfo?: VerticalDatumInfo;
/**
*
* @type {string}
* @memberof TableRating
*/
inRangeMethod?: string;
/**
*
* @type {string}
* @memberof TableRating
*/
outRangeLowMethod?: string;
/**
*
* @type {string}
* @memberof TableRating
*/
outRangeHighMethod?: string;
}
/**
* Check if a given object implements the TableRating interface.
*/
export declare function instanceOfTableRating(value: object): boolean;
export declare function TableRatingFromJSON(json: any): TableRating;
export declare function TableRatingFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableRating;
export declare function TableRatingToJSON(value?: TableRating | null): any;