cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
44 lines (43 loc) • 1.4 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.
*/
/**
* List of Repeating seasonal values. The values repeater after the specified interval. A yearly interval seasonable could have 12 different values, one for each month for example. Mutually exclusive with seasonalTimeSeriesId and siParameterUnitsConstantValue
* @export
* @interface SeasonalValueBean
*/
export interface SeasonalValueBean {
/**
*
* @type {number}
* @memberof SeasonalValueBean
*/
value?: number;
/**
*
* @type {number}
* @memberof SeasonalValueBean
*/
offsetMonths?: number;
/**
*
* @type {number}
* @memberof SeasonalValueBean
*/
offsetMinutes?: number;
}
/**
* Check if a given object implements the SeasonalValueBean interface.
*/
export declare function instanceOfSeasonalValueBean(value: object): boolean;
export declare function SeasonalValueBeanFromJSON(json: any): SeasonalValueBean;
export declare function SeasonalValueBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): SeasonalValueBean;
export declare function SeasonalValueBeanToJSON(value?: SeasonalValueBean | null): any;