Base interface for all AI Agent domain events

interface AIAgentDomainEvent {
    agentId: string;
    agentName: string;
    occurredAt: Date;
}

Hierarchy (View Summary)

Properties

agentId: string
agentName: string
occurredAt: Date

The timestamp when this event occurred.