/** * 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 TimeseriesLocalRain */ export interface TimeseriesLocalRain { /** * * @type {string} * @memberof TimeseriesLocalRain */ readonly url?: string; /** * * @type {string} * @memberof TimeseriesLocalRain */ readonly simulation?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof TimeseriesLocalRain */ offset: number; /** * Timeseries provided as a nested list. The inner list consists of exactly 2 values: timestamp, value * @type {Array>} * @memberof TimeseriesLocalRain */ values: Array>; /** * * @type {boolean} * @memberof TimeseriesLocalRain */ interpolate?: boolean; /** * m/s is only option for now * @type {string} * @memberof TimeseriesLocalRain */ units?: TimeseriesLocalRainUnitsEnum; /** * * @type {number} * @memberof TimeseriesLocalRain */ diameter: number; /** * * @type {Point} * @memberof TimeseriesLocalRain */ point: Point; /** * * @type {string} * @memberof TimeseriesLocalRain */ readonly uid?: string; /** * * @type {number} * @memberof TimeseriesLocalRain */ readonly id?: number; } export declare function TimeseriesLocalRainFromJSON(json: any): TimeseriesLocalRain; export declare function TimeseriesLocalRainToJSON(value?: TimeseriesLocalRain): any; /** * @export * @enum {string} */ export declare enum TimeseriesLocalRainUnitsEnum { MS = "m/s", MmH = "mm/h", MmMin = "mm/min" }