/** * 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 Commit */ export interface Commit { /** * * @type {string} * @memberof Commit */ commitMessage?: string | null; /** * * @type {string} * @memberof Commit */ forceAs?: CommitForceAsEnum; /** * * @type {string} * @memberof Commit */ schematisationName?: string; /** * The datetime of the commit (only superusers can modify) * @type {Date} * @memberof Commit */ commitDate?: Date | null; /** * The username of a user * @type {string} * @memberof Commit */ commitUser?: string; /** * User that committed the revision on models.lizard.net (only superusers can modify) * @type {string} * @memberof Commit */ user?: string | null; } export declare function CommitFromJSON(json: any): Commit; export declare function CommitToJSON(value?: Commit): any; /** * @export * @enum {string} */ export declare enum CommitForceAsEnum { Default = "default", NewRevision = "new_revision", NewSchematisation = "new_schematisation" }