UNPKG

cwmsjs

Version:

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

64 lines (63 loc) 1.51 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. */ /** * * @export * @interface ForecastSpec */ export interface ForecastSpec { /** * Owning office of object. * @type {string} * @memberof ForecastSpec */ officeId: string; /** * Forecast Spec ID * @type {string} * @memberof ForecastSpec */ specId?: string; /** * Forecast Designator * @type {string} * @memberof ForecastSpec */ designator?: string; /** * Location IDs * @type {string} * @memberof ForecastSpec */ locationId?: string; /** * Source Entity ID * @type {string} * @memberof ForecastSpec */ sourceEntityId?: string; /** * Description of Forecast * @type {string} * @memberof ForecastSpec */ description?: string; /** * List of Time Series IDs belonging to this Forecast Spec * @type {Array<string>} * @memberof ForecastSpec */ timeSeriesIds?: Array<string>; } export declare function ForecastSpecFromJSON(json: any): ForecastSpec; export declare function ForecastSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): ForecastSpec; export declare function ForecastSpecToJSON(value?: ForecastSpec | null): any;