/** * 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. */ import type { RuleJobResult } from './RuleJobResult'; import type { ResourceLink } from './ResourceLink'; import type { RuleResult } from './RuleResult'; /** * * @export * @interface RuleEventDto */ export interface RuleEventDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof RuleEventDto */ links: { [key: string]: ResourceLink; }; /** * The ID of the event. * @type {string} * @memberof RuleEventDto */ id: string; /** * The time when the event has been created. * @type {Date} * @memberof RuleEventDto */ created: Date; /** * The description. * @type {string} * @memberof RuleEventDto */ description: string; /** * The name of the event. * @type {string} * @memberof RuleEventDto */ eventName: string; /** * The last dump. * @type {string} * @memberof RuleEventDto */ lastDump?: string | null; /** * The number of calls. * @type {number} * @memberof RuleEventDto */ numCalls: number; /** * The next attempt. * @type {Date} * @memberof RuleEventDto */ nextAttempt?: Date | null; /** * * @type {RuleResult} * @memberof RuleEventDto */ result: RuleResult; /** * * @type {RuleJobResult} * @memberof RuleEventDto */ jobResult: RuleJobResult; } /** * Check if a given object implements the RuleEventDto interface. */ export declare function instanceOfRuleEventDto(value: any): value is RuleEventDto; export declare function RuleEventDtoFromJSON(json: any): RuleEventDto; export declare function RuleEventDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): RuleEventDto; export declare function RuleEventDtoToJSON(value?: RuleEventDto | null, _ignoreDiscriminator?: boolean): any;