cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
95 lines (94 loc) • 1.9 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 { 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;
}
export declare function TableRatingFromJSON(json: any): TableRating;
export declare function TableRatingFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableRating;
export declare function TableRatingToJSON(value?: TableRating | null): any;