/** * 3Di API * 3Di simulation API (latest stable version: v3) Framework release: 3.0.1 3Di core release: 2.3.0.dev0 deployed on: 01:15PM (UTC) on October 03, 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 TimedSavedState */ export interface TimedSavedState { /** * * @type {string} * @memberof TimedSavedState */ readonly url?: string; /** * * @type {string} * @memberof TimedSavedState */ name?: string; /** * * @type {string} * @memberof TimedSavedState */ readonly simulation?: string; /** * * @type {Date} * @memberof TimedSavedState */ readonly created?: Date; /** * Time in simulation the savedstate has been created * @type {number} * @memberof TimedSavedState */ readonly createdTime?: number; /** * tags provided as a list of strings * @type {Array} * @memberof TimedSavedState */ tags?: Array; /** * * @type {Date} * @memberof TimedSavedState */ expiry?: Date | null; /** * Time in simulation to create savedstate * @type {number} * @memberof TimedSavedState */ time: number | null; /** * * @type {FileReadOnly} * @memberof TimedSavedState */ file?: FileReadOnly; /** * * @type {number} * @memberof TimedSavedState */ readonly id?: number; /** * * @type {string} * @memberof TimedSavedState */ uuid?: string; } export declare function TimedSavedStateFromJSON(json: any): TimedSavedState; export declare function TimedSavedStateToJSON(value?: TimedSavedState): any;