/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 HistoryEventDto */ export interface HistoryEventDto { /** * The message for the event. * @type {string} * @memberof HistoryEventDto */ message: string; /** * The type of the original event. * @type {string} * @memberof HistoryEventDto */ eventType: string; /** * The user who called the action. * @type {string} * @memberof HistoryEventDto */ actor: string; /** * Gets a unique id for the event. * @type {string} * @memberof HistoryEventDto */ eventId: string; /** * The time when the event happened. * @type {Date} * @memberof HistoryEventDto */ created: Date; /** * The version identifier. * @type {number} * @memberof HistoryEventDto */ version: number; } /** * Check if a given object implements the HistoryEventDto interface. */ export declare function instanceOfHistoryEventDto(value: any): value is HistoryEventDto; export declare function HistoryEventDtoFromJSON(json: any): HistoryEventDto; export declare function HistoryEventDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): HistoryEventDto; export declare function HistoryEventDtoToJSON(value?: HistoryEventDto | null, _ignoreDiscriminator?: boolean): any;