UNPKG

cwmsjs

Version:

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

77 lines (76 loc) 1.71 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 BaseRatingMetadata */ export interface BaseRatingMetadata { /** * * @type {string} * @memberof BaseRatingMetadata */ officeId?: string; /** * * @type {string} * @memberof BaseRatingMetadata */ ratingSpecId?: string; /** * * @type {string} * @memberof BaseRatingMetadata */ unitsId?: string; /** * * @type {boolean} * @memberof BaseRatingMetadata */ active?: boolean; /** * * @type {Date} * @memberof BaseRatingMetadata */ effectiveDate?: Date; /** * * @type {Date} * @memberof BaseRatingMetadata */ createDate?: Date; /** * * @type {Date} * @memberof BaseRatingMetadata */ transitionDate?: Date; /** * * @type {string} * @memberof BaseRatingMetadata */ description?: string; /** * * @type {VerticalDatumInfo} * @memberof BaseRatingMetadata */ verticalDatumInfo?: VerticalDatumInfo; } export declare function BaseRatingMetadataFromJSON(json: any): BaseRatingMetadata; export declare function BaseRatingMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseRatingMetadata; export declare function BaseRatingMetadataToJSON(value?: BaseRatingMetadata | null): any;