/** * 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 { FileReadOnly } from './'; /** * * @export * @interface FileTimeseriesSourcesSinks */ export interface FileTimeseriesSourcesSinks { /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ readonly url?: string; /** * * @type {number} * @memberof FileTimeseriesSourcesSinks */ multiplier?: number; /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ readonly simulation?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof FileTimeseriesSourcesSinks */ offset?: number | null; /** * Duration of event in seconds * @type {number} * @memberof FileTimeseriesSourcesSinks */ duration?: number | null; /** * in simulation in seconds * @type {Array} * @memberof FileTimeseriesSourcesSinks */ timestamps?: Array | null; /** * interval in seconds * @type {number} * @memberof FileTimeseriesSourcesSinks */ interval?: number | null; /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ valuesReference?: string | null; /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ fillValue?: string; /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ readonly type?: FileTimeseriesSourcesSinksTypeEnum; /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ units: FileTimeseriesSourcesSinksUnitsEnum; /** * * @type {FileReadOnly} * @memberof FileTimeseriesSourcesSinks */ file?: FileReadOnly; /** * * @type {string} * @memberof FileTimeseriesSourcesSinks */ readonly uid?: string; /** * * @type {number} * @memberof FileTimeseriesSourcesSinks */ readonly id?: number; } export declare function FileTimeseriesSourcesSinksFromJSON(json: any): FileTimeseriesSourcesSinks; export declare function FileTimeseriesSourcesSinksToJSON(value?: FileTimeseriesSourcesSinks): any; /** * @export * @enum {string} */ export declare enum FileTimeseriesSourcesSinksTypeEnum { Netcdf4 = "netcdf4" } /** * @export * @enum {string} */ export declare enum FileTimeseriesSourcesSinksUnitsEnum { Mm = "mm", MmH = "mm/h" }