/** * 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 SimulationUpdate */ export interface SimulationUpdate { /** * * @type {string} * @memberof SimulationUpdate */ readonly url?: string; /** * * @type {string} * @memberof SimulationUpdate */ readonly slug?: string; /** * * @type {string} * @memberof SimulationUpdate */ readonly uuid?: string; /** * * @type {string} * @memberof SimulationUpdate */ name: string; /** * tags provided as a list of strings * @type {Array} * @memberof SimulationUpdate */ tags?: Array; /** * * @type {string} * @memberof SimulationUpdate */ readonly created?: string; /** * The id of a threedimodel * @type {string} * @memberof SimulationUpdate */ readonly threedimodel?: string; /** * The unique_id of an organisation * @type {string} * @memberof SimulationUpdate */ readonly organisation?: string; /** * * @type {string} * @memberof SimulationUpdate */ readonly organisationName?: string; /** * The username of a user * @type {string} * @memberof SimulationUpdate */ readonly user?: string; /** * * @type {Date} * @memberof SimulationUpdate */ readonly startDatetime?: Date; /** * * @type {Date} * @memberof SimulationUpdate */ endDatetime?: Date; /** * * @type {number} * @memberof SimulationUpdate */ duration?: number; /** * * @type {string} * @memberof SimulationUpdate */ readonly durationHumanized?: string; /** * * @type {number} * @memberof SimulationUpdate */ readonly threedimodelId?: number; /** * * @type {number} * @memberof SimulationUpdate */ readonly id?: number; /** * * @type {string} * @memberof SimulationUpdate */ readonly threedicoreVersion?: string; /** * * @type {string} * @memberof SimulationUpdate */ readonly clonedFrom?: string; /** * The name of the compute cluster that runs/has run the simulation. * @type {string} * @memberof SimulationUpdate */ readonly computeCluster?: string; } export declare function SimulationUpdateFromJSON(json: any): SimulationUpdate; export declare function SimulationUpdateToJSON(value?: SimulationUpdate): any;