UNPKG

cwmsjs

Version:

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

34 lines (33 loc) 961 B
/** * 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. */ /** * * @export * @interface RatingSpecEffectiveDates */ export interface RatingSpecEffectiveDates { /** * * @type {string} * @memberof RatingSpecEffectiveDates */ ratingSpecId: string; /** * * @type {Array<Date>} * @memberof RatingSpecEffectiveDates */ effectiveDates?: Array<Date>; } export declare function RatingSpecEffectiveDatesFromJSON(json: any): RatingSpecEffectiveDates; export declare function RatingSpecEffectiveDatesFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatingSpecEffectiveDates; export declare function RatingSpecEffectiveDatesToJSON(value?: RatingSpecEffectiveDates | null): any;