/** * 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 MeasureLocation */ export interface MeasureLocation { /** * * @type {number} * @memberof MeasureLocation */ readonly id?: number; /** * * @type {string} * @memberof MeasureLocation */ weight: string; /** * e.g. * @type {string} * @memberof MeasureLocation */ contentType: MeasureLocationContentTypeEnum; /** * * @type {number} * @memberof MeasureLocation */ contentPk: number; /** * * @type {number} * @memberof MeasureLocation */ gridId?: number | null; /** * * @type {string} * @memberof MeasureLocation */ readonly state?: MeasureLocationStateEnum; /** * * @type {object} * @memberof MeasureLocation */ readonly stateDetail?: object; } export declare function MeasureLocationFromJSON(json: any): MeasureLocation; export declare function MeasureLocationToJSON(value?: MeasureLocation): any; /** * @export * @enum {string} */ export declare enum MeasureLocationContentTypeEnum { ConnectionNode = "v2_connection_node", Pipe = "v2_pipe", Orifice = "v2_orifice", Culvert = "v2_culvert", Channel = "v2_channel", Weir = "v2_weir" } /** * @export * @enum {string} */ export declare enum MeasureLocationStateEnum { Processing = "processing", Valid = "valid", Invalid = "invalid" }