UNPKG

cwmsjs

Version:

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

69 lines (68 loc) 1.64 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 { ParameterSpec } from './ParameterSpec'; /** * * @export * @interface RatingTemplate */ export interface RatingTemplate { /** * Owning office of object. * @type {string} * @memberof RatingTemplate */ officeId: string; /** * * @type {string} * @memberof RatingTemplate */ id?: string; /** * * @type {string} * @memberof RatingTemplate */ version?: string; /** * * @type {string} * @memberof RatingTemplate */ description?: string; /** * * @type {string} * @memberof RatingTemplate */ dependentParameter?: string; /** * * @type {Array<ParameterSpec>} * @memberof RatingTemplate */ independentParameterSpecs?: Array<ParameterSpec>; /** * * @type {Array<string>} * @memberof RatingTemplate */ ratingIds?: Array<string>; } /** * Check if a given object implements the RatingTemplate interface. */ export declare function instanceOfRatingTemplate(value: object): boolean; export declare function RatingTemplateFromJSON(json: any): RatingTemplate; export declare function RatingTemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatingTemplate; export declare function RatingTemplateToJSON(value?: RatingTemplate | null): any;