/**
 * 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.
 */
import type { RegularTextTimeSeriesRow } from './RegularTextTimeSeriesRow';
/**
 *
 * @export
 * @interface TextTimeSeries
 */
export interface TextTimeSeries {
    /**
     * Owning office of object.
     * @type {string}
     * @memberof TextTimeSeries
     */
    officeId: string;
    /**
     *
     * @type {string}
     * @memberof TextTimeSeries
     */
    name?: string;
    /**
     *
     * @type {number}
     * @memberof TextTimeSeries
     */
    intervalOffset?: number;
    /**
     *
     * @type {string}
     * @memberof TextTimeSeries
     */
    timeZone?: string;
    /**
     * Version type specifies the type of time-series response to be received. Can be max aggregate or single version. Max aggregate cannot be run if version date field is specified.
     * @type {string}
     * @memberof TextTimeSeries
     */
    dateVersionType?: TextTimeSeriesDateVersionTypeEnum;
    /**
     * The version date of the time series trace
     * @type {Date}
     * @memberof TextTimeSeries
     */
    versionDate?: Date;
    /**
     *
     * @type {Array<RegularTextTimeSeriesRow>}
     * @memberof TextTimeSeries
     */
    regularTextValues?: Array<RegularTextTimeSeriesRow>;
}
/**
 * @export
 */
export declare const TextTimeSeriesDateVersionTypeEnum: {
    readonly MaxAggregate: "MAX_AGGREGATE";
    readonly SingleVersion: "SINGLE_VERSION";
    readonly Unversioned: "UNVERSIONED";
};
export type TextTimeSeriesDateVersionTypeEnum = typeof TextTimeSeriesDateVersionTypeEnum[keyof typeof TextTimeSeriesDateVersionTypeEnum];
/**
 * Check if a given object implements the TextTimeSeries interface.
 */
export declare function instanceOfTextTimeSeries(value: object): boolean;
export declare function TextTimeSeriesFromJSON(json: any): TextTimeSeries;
export declare function TextTimeSeriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): TextTimeSeries;
export declare function TextTimeSeriesToJSON(value?: TextTimeSeries | null): any;
