UNPKG

cwmsjs

Version:

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

53 lines (52 loc) 1.3 kB
/** * 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 { CwmsId } from './CwmsId'; /** * * @export * @interface TimeSeriesProfile */ export interface TimeSeriesProfile { /** * * @type {CwmsId} * @memberof TimeSeriesProfile */ locationId?: CwmsId; /** * Description * @type {string} * @memberof TimeSeriesProfile */ description?: string; /** * Dependent Parameters * @type {Array<string>} * @memberof TimeSeriesProfile */ parameterList?: Array<string>; /** * Independent Parameter * @type {string} * @memberof TimeSeriesProfile */ keyParameter?: string; /** * * @type {CwmsId} * @memberof TimeSeriesProfile */ referenceTsId?: CwmsId; } export declare function TimeSeriesProfileFromJSON(json: any): TimeSeriesProfile; export declare function TimeSeriesProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeSeriesProfile; export declare function TimeSeriesProfileToJSON(value?: TimeSeriesProfile | null): any;