cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
65 lines (64 loc) • 1.48 kB
TypeScript
/**
* 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 { 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>;
}
export declare function RatingTemplateFromJSON(json: any): RatingTemplate;
export declare function RatingTemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatingTemplate;
export declare function RatingTemplateToJSON(value?: RatingTemplate | null): any;