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