/** * 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 { FileReadOnly } from './'; /** * * @export * @interface TimedSavedStateUpdate */ export interface TimedSavedStateUpdate { /** * * @type {string} * @memberof TimedSavedStateUpdate */ readonly url?: string; /** * * @type {string} * @memberof TimedSavedStateUpdate */ name?: string; /** * * @type {string} * @memberof TimedSavedStateUpdate */ readonly simulation?: string; /** * * @type {Date} * @memberof TimedSavedStateUpdate */ created?: Date | null; /** * Time in simulation the savedstate has been created * @type {number} * @memberof TimedSavedStateUpdate */ createdTime?: number | null; /** * tags provided as a list of strings * @type {Array} * @memberof TimedSavedStateUpdate */ tags?: Array; /** * * @type {Date} * @memberof TimedSavedStateUpdate */ expiry?: Date | null; /** * Time in simulation to create savedstate * @type {number} * @memberof TimedSavedStateUpdate */ time: number | null; /** * * @type {FileReadOnly} * @memberof TimedSavedStateUpdate */ file?: FileReadOnly; /** * * @type {number} * @memberof TimedSavedStateUpdate */ readonly id?: number; /** * * @type {string} * @memberof TimedSavedStateUpdate */ uuid?: string; } export declare function TimedSavedStateUpdateFromJSON(json: any): TimedSavedStateUpdate; export declare function TimedSavedStateUpdateToJSON(value?: TimedSavedStateUpdate): any;