UNPKG

cwmsjs

Version:

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

83 lines (82 loc) 1.77 kB
/** * 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 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; } export declare function ExpressionRatingFromJSON(json: any): ExpressionRating; export declare function ExpressionRatingFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressionRating; export declare function ExpressionRatingToJSON(value?: ExpressionRating | null): any;