/** * 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 { RevisionRaster, Sqlite } from './'; /** * * @export * @interface SchematisationRevision */ export interface SchematisationRevision { /** * * @type {string} * @memberof SchematisationRevision */ readonly url?: string; /** * * @type {number} * @memberof SchematisationRevision */ readonly id?: number; /** * * @type {Date} * @memberof SchematisationRevision */ readonly created?: Date; /** * * @type {string} * @memberof SchematisationRevision */ readonly schematisation?: string; /** * * @type {number} * @memberof SchematisationRevision */ readonly schematisationId?: number; /** * * @type {number} * @memberof SchematisationRevision */ readonly number?: number; /** * * @type {Sqlite} * @memberof SchematisationRevision */ sqlite?: Sqlite; /** * * @type {Array} * @memberof SchematisationRevision */ readonly rasters?: Array; /** * * @type {Date} * @memberof SchematisationRevision */ readonly archived?: Date; /** * * @type {Date} * @memberof SchematisationRevision */ readonly commitDate?: Date; /** * The username of a user * @type {string} * @memberof SchematisationRevision */ readonly commitUser?: string; /** * * @type {string} * @memberof SchematisationRevision */ readonly commitFirstName?: string; /** * * @type {string} * @memberof SchematisationRevision */ readonly commitLastName?: string; /** * * @type {string} * @memberof SchematisationRevision */ readonly commitMessage?: string; /** * * @type {boolean} * @memberof SchematisationRevision */ readonly isValid?: boolean; /** * * @type {boolean} * @memberof SchematisationRevision */ readonly hasThreedimodel?: boolean; } export declare function SchematisationRevisionFromJSON(json: any): SchematisationRevision; export declare function SchematisationRevisionToJSON(value?: SchematisationRevision): any;