UNPKG

cwmsjs

Version:

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

81 lines (80 loc) 1.87 kB
/** * 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 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; } /** * Check if a given object implements the BaseRatingMetadata interface. */ export declare function instanceOfBaseRatingMetadata(value: object): boolean; export declare function BaseRatingMetadataFromJSON(json: any): BaseRatingMetadata; export declare function BaseRatingMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseRatingMetadata; export declare function BaseRatingMetadataToJSON(value?: BaseRatingMetadata | null): any;