/** * 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 { MeasureSpecification } from './'; /** * * @export * @interface TableStructureControl */ export interface TableStructureControl { /** * * @type {number} * @memberof TableStructureControl */ readonly id?: number; /** * * @type {string} * @memberof TableStructureControl */ readonly url?: string; /** * offset of event in simulation in seconds * @type {number} * @memberof TableStructureControl */ offset: number; /** * event duration in seconds. -9999 is the \'infinite duration\' value (only allowed in conjunction with infinite simulations * @type {number} * @memberof TableStructureControl */ duration?: number | null; /** * * @type {MeasureSpecification} * @memberof TableStructureControl */ measureSpecification: MeasureSpecification; /** * * @type {number} * @memberof TableStructureControl */ structureId?: number | null; /** * * @type {string} * @memberof TableStructureControl */ structureType: TableStructureControlStructureTypeEnum; /** * * @type {string} * @memberof TableStructureControl */ type: TableStructureControlTypeEnum; /** * * @type {Array>} * @memberof TableStructureControl */ values: Array>; /** * * @type {string} * @memberof TableStructureControl */ readonly state?: TableStructureControlStateEnum; /** * * @type {object} * @memberof TableStructureControl */ readonly stateDetail?: object; /** * * @type {number} * @memberof TableStructureControl */ gridId?: number | null; /** * * @type {string} * @memberof TableStructureControl */ readonly uid?: string; } export declare function TableStructureControlFromJSON(json: any): TableStructureControl; export declare function TableStructureControlToJSON(value?: TableStructureControl): any; /** * @export * @enum {string} */ export declare enum TableStructureControlStructureTypeEnum { Pumpstation = "v2_pumpstation", Pipe = "v2_pipe", Orifice = "v2_orifice", Culvert = "v2_culvert", Weir = "v2_weir", Channel = "v2_channel" } /** * @export * @enum {string} */ export declare enum TableStructureControlTypeEnum { DischargeCoefficients = "set_discharge_coefficients", CrestLevel = "set_crest_level", PumpCapacity = "set_pump_capacity" } /** * @export * @enum {string} */ export declare enum TableStructureControlStateEnum { Processing = "processing", Valid = "valid", Invalid = "invalid" }