/** * 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 LizardRasterSourcesSinks */ export interface LizardRasterSourcesSinks { /** * * @type {string} * @memberof LizardRasterSourcesSinks */ readonly url?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof LizardRasterSourcesSinks */ offset: number; /** * event duration in seconds. -9999 is the \'infinite duration\' value (only allowed in conjunction with infinite simulations * @type {number} * @memberof LizardRasterSourcesSinks */ duration?: number | null; /** * * @type {string} * @memberof LizardRasterSourcesSinks */ referenceUuid: string; /** * * @type {Date} * @memberof LizardRasterSourcesSinks */ startDatetime: Date; /** * * @type {string} * @memberof LizardRasterSourcesSinks */ readonly simulation?: string; /** * * @type {number} * @memberof LizardRasterSourcesSinks */ readonly interval?: number; /** * * @type {number} * @memberof LizardRasterSourcesSinks */ readonly originOffset?: number; /** * * @type {string} * @memberof LizardRasterSourcesSinks */ readonly storePath?: string; /** * * @type {number} * @memberof LizardRasterSourcesSinks */ readonly id?: number; /** * * @type {string} * @memberof LizardRasterSourcesSinks */ readonly uid?: string; /** * * @type {string} * @memberof LizardRasterSourcesSinks */ readonly user?: string; /** * * @type {number} * @memberof LizardRasterSourcesSinks */ readonly userId?: number; } export declare function LizardRasterSourcesSinksFromJSON(json: any): LizardRasterSourcesSinks; export declare function LizardRasterSourcesSinksToJSON(value?: LizardRasterSourcesSinks): any;