/**
 * 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.
 */
/**
 *
 * @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>;
}
/**
 * Check if a given object implements the ForecastSpec interface.
 */
export declare function instanceOfForecastSpec(value: object): boolean;
export declare function ForecastSpecFromJSON(json: any): ForecastSpec;
export declare function ForecastSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): ForecastSpec;
export declare function ForecastSpecToJSON(value?: ForecastSpec | null): any;
