/** * 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 ConstantLocalRain */ export interface ConstantLocalRain { /** * * @type {string} * @memberof ConstantLocalRain */ readonly url?: string; /** * * @type {string} * @memberof ConstantLocalRain */ readonly simulation?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof ConstantLocalRain */ offset: number; /** * * @type {number} * @memberof ConstantLocalRain */ value: number; /** * m/s is only option for now * @type {string} * @memberof ConstantLocalRain */ units?: ConstantLocalRainUnitsEnum; /** * event duration in seconds. -9999 is the \'infinite duration\' value (only allowed in conjunction with infinite simulations * @type {number} * @memberof ConstantLocalRain */ duration?: number | null; /** * * @type {boolean} * @memberof ConstantLocalRain */ interpolate?: boolean; /** * * @type {number} * @memberof ConstantLocalRain */ diameter: number; /** * * @type {Point} * @memberof ConstantLocalRain */ point: Point; /** * * @type {string} * @memberof ConstantLocalRain */ readonly uid?: string; /** * * @type {number} * @memberof ConstantLocalRain */ readonly id?: number; } export declare function ConstantLocalRainFromJSON(json: any): ConstantLocalRain; export declare function ConstantLocalRainToJSON(value?: ConstantLocalRain): any; /** * @export * @enum {string} */ export declare enum ConstantLocalRainUnitsEnum { MS = "m/s", MmH = "mm/h", MmMin = "mm/min" }