cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
40 lines (39 loc) • 1.15 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 { BaseRatingMetadata } from './BaseRatingMetadata';
import type { RatingSpec } from './RatingSpec';
/**
*
* @export
* @interface RatingMetadata
*/
export interface RatingMetadata {
/**
*
* @type {RatingSpec}
* @memberof RatingMetadata
*/
ratingSpec?: RatingSpec;
/**
*
* @type {Array<BaseRatingMetadata>}
* @memberof RatingMetadata
*/
ratings?: Array<BaseRatingMetadata>;
}
/**
* Check if a given object implements the RatingMetadata interface.
*/
export declare function instanceOfRatingMetadata(value: object): boolean;
export declare function RatingMetadataFromJSON(json: any): RatingMetadata;
export declare function RatingMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatingMetadata;
export declare function RatingMetadataToJSON(value?: RatingMetadata | null): any;