/** * BIMData API * BIMData API is a tool to interact with your models stored on BIMData’s servers. Through the API, you can manage your projects, the clouds, upload your IFC files and manage them through endpoints. * * The version of the OpenAPI document: v1 (v1) * Contact: support@bimdata.io * * 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 LogEntry */ export interface LogEntry { /** * * @type {number} * @memberof LogEntry */ readonly id: number; /** * * @type {number} * @memberof LogEntry */ readonly user_id: number | null; /** * * @type {string} * @memberof LogEntry */ user_email: string | null; /** * * @type {string} * @memberof LogEntry */ app_name: string | null; /** * * @type {string} * @memberof LogEntry */ project_name: string; /** * * @type {Date} * @memberof LogEntry */ readonly date: Date; /** * * @type {string} * @memberof LogEntry */ action: string; /** * * @type {any} * @memberof LogEntry */ description: any | null; } export declare function LogEntryFromJSON(json: any): LogEntry; export declare function LogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogEntry; export declare function LogEntryToJSON(value?: LogEntry | null): any;