Files
attune/web/src/api/models/EventResponse.ts
2026-02-27 16:34:17 -06:00

43 lines
830 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { i64 } from './i64';
/**
* Full event response with all details
*/
export type EventResponse = {
/**
* Event configuration
*/
config: any | null;
/**
* Creation timestamp
*/
created: string;
/**
* Event ID
*/
id: i64;
/**
* Event payload data
*/
payload: Record<string, any>;
rule?: (null | i64);
/**
* Rule reference (if event was generated by a specific rule)
*/
rule_ref?: string | null;
source?: (null | i64);
/**
* Source reference
*/
source_ref?: string | null;
trigger?: (null | i64);
/**
* Trigger reference
*/
trigger_ref: string;
};