Class AgentRunEvent
Represents a single event from an SSE agent run stream.
Inherited Members
Namespace: Seclai.Models
Assembly: Seclai.dll
Syntax
public sealed class AgentRunEvent
Properties
Data
The raw JSON data payload.
Declaration
public string? Data { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Event
The SSE event type (e.g. "init", "update", "done").
Declaration
public string? Event { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Run
The parsed AgentRunResponse if the data could be decoded, otherwise null.
Declaration
public AgentRunResponse? Run { get; set; }
Property Value
| Type | Description |
|---|---|
| AgentRunResponse |