/** * 3Di API * 3Di simulation API (latest stable version: v3) Framework release: 3.0.1 3Di core release: 2.3.0.dev0 deployed on: 10:42AM (UTC) on October 04, 2022 * * The version of the OpenAPI document: v3 * Contact: info@nelen-schuurmans.nl * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Point } from './'; /** * * @export * @interface TimeseriesLateral */ export interface TimeseriesLateral { /** * * @type {string} * @memberof TimeseriesLateral */ readonly url?: string; /** * * @type {string} * @memberof TimeseriesLateral */ readonly simulation?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof TimeseriesLateral */ offset: number; /** * * @type {boolean} * @memberof TimeseriesLateral */ interpolate?: boolean; /** * Timeseries provided as a nested list. The inner list consists of exactly 2 values: timestamp, value * @type {Array>} * @memberof TimeseriesLateral */ values: Array>; /** * \'m3/s\' (only option for now) * @type {string} * @memberof TimeseriesLateral */ units: TimeseriesLateralUnitsEnum; /** * * @type {Point} * @memberof TimeseriesLateral */ point?: Point; /** * * @type {number} * @memberof TimeseriesLateral */ connectionNode?: number | null; /** * * @type {string} * @memberof TimeseriesLateral */ readonly state?: TimeseriesLateralStateEnum; /** * * @type {object} * @memberof TimeseriesLateral */ readonly stateDetail?: object; /** * * @type {number} * @memberof TimeseriesLateral */ readonly gridId?: number; /** * * @type {number} * @memberof TimeseriesLateral */ readonly id?: number; /** * * @type {string} * @memberof TimeseriesLateral */ readonly uid?: string; } export declare function TimeseriesLateralFromJSON(json: any): TimeseriesLateral; export declare function TimeseriesLateralToJSON(value?: TimeseriesLateral): any; /** * @export * @enum {string} */ export declare enum TimeseriesLateralUnitsEnum { M3S = "m3/s" } /** * @export * @enum {string} */ export declare enum TimeseriesLateralStateEnum { Processing = "processing", Valid = "valid", Invalid = "invalid" }