/** * 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 FileRasterSourcesSinks */ export interface FileRasterSourcesSinks { /** * * @type {string} * @memberof FileRasterSourcesSinks */ readonly url?: string; /** * * @type {number} * @memberof FileRasterSourcesSinks */ multiplier?: number; /** * * @type {string} * @memberof FileRasterSourcesSinks */ readonly simulation?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof FileRasterSourcesSinks */ offset?: number | null; /** * Duration of event in seconds * @type {number} * @memberof FileRasterSourcesSinks */ duration?: number | null; /** * in simulation in seconds * @type {Array} * @memberof FileRasterSourcesSinks */ timestamps?: Array | null; /** * interval in seconds * @type {number} * @memberof FileRasterSourcesSinks */ interval?: number | null; /** * * @type {string} * @memberof FileRasterSourcesSinks */ valuesReference?: string | null; /** * * @type {string} * @memberof FileRasterSourcesSinks */ fillValue?: string; /** * * @type {string} * @memberof FileRasterSourcesSinks */ units?: FileRasterSourcesSinksUnitsEnum; /** * * @type {Array} * @memberof FileRasterSourcesSinks */ geotransform?: Array; /** * * @type {number} * @memberof FileRasterSourcesSinks */ epsgCode?: number; /** * * @type {FileReadOnly} * @memberof FileRasterSourcesSinks */ file?: FileReadOnly; /** * * @type {string} * @memberof FileRasterSourcesSinks */ readonly type?: FileRasterSourcesSinksTypeEnum; /** * * @type {string} * @memberof FileRasterSourcesSinks */ readonly uid?: string; /** * * @type {number} * @memberof FileRasterSourcesSinks */ readonly id?: number; } export declare function FileRasterSourcesSinksFromJSON(json: any): FileRasterSourcesSinks; export declare function FileRasterSourcesSinksToJSON(value?: FileRasterSourcesSinks): any; /** * @export * @enum {string} */ export declare enum FileRasterSourcesSinksUnitsEnum { MS = "m/s", Mm = "mm", MmH = "mm/h", MmHr = "mm/hr" } /** * @export * @enum {string} */ export declare enum FileRasterSourcesSinksTypeEnum { Netcdf4 = "netcdf4" }