/** * 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. */ /** * * @export * @interface LizardTimeseriesSourcesSinks */ export interface LizardTimeseriesSourcesSinks { /** * * @type {string} * @memberof LizardTimeseriesSourcesSinks */ readonly url?: string; /** * * @type {string} * @memberof LizardTimeseriesSourcesSinks */ readonly simulation?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof LizardTimeseriesSourcesSinks */ offset: number; /** * event duration in seconds. -9999 is the \'infinite duration\' value (only allowed in conjunction with infinite simulations * @type {number} * @memberof LizardTimeseriesSourcesSinks */ duration?: number | null; /** * * @type {string} * @memberof LizardTimeseriesSourcesSinks */ referenceUuid: string; /** * * @type {Date} * @memberof LizardTimeseriesSourcesSinks */ startDatetime: Date; /** * * @type {boolean} * @memberof LizardTimeseriesSourcesSinks */ interpolate?: boolean; /** * Timeseries provided as a nested list. The inner list consists of exactly 2 values: timestamp, value * @type {Array>} * @memberof LizardTimeseriesSourcesSinks */ readonly values?: Array>; /** * * @type {string} * @memberof LizardTimeseriesSourcesSinks */ readonly uid?: string; } export declare function LizardTimeseriesSourcesSinksFromJSON(json: any): LizardTimeseriesSourcesSinks; export declare function LizardTimeseriesSourcesSinksToJSON(value?: LizardTimeseriesSourcesSinks): any;