ContentDeltaEvent¶
Structure Class¶
ContentDeltaEvent
dataclass
¶
An event that contains incremental output from a command execution. This event streams standard output and standard error content as it becomes available during command execution.
Attributes¶
stderr
class-attribute
instance-attribute
¶
stderr: str | None = None
The standard error content from the command execution. This field contains the incremental output written to stderr by the executing command.
stdout
class-attribute
instance-attribute
¶
stdout: str | None = None
The standard output content from the command execution. This field contains the incremental output written to stdout by the executing command.