ShellCallOutputResultItem class

A shell call output result item.

Inheritance
Annotations
  • @immutable

Constructors

ShellCallOutputResultItem({required String id, required String callId, ItemStatus? status, required List<ShellCallOutputContent> output, required int? maxOutputLength})
Creates a ShellCallOutputResultItem.
const
ShellCallOutputResultItem.fromJson(Map<String, dynamic> json)
Creates a ShellCallOutputResultItem from JSON.
factory

Properties

callId String
The shell call ID.
final
hashCode int
The hash code for this object.
no setteroverride
id String
Unique identifier.
final
maxOutputLength int?
The max output length to preserve for follow-up turns.
final
output List<ShellCallOutputContent>
Structured output chunks from the call.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status ItemStatus?
The status of the shell call output.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts to JSON.
override
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override