EvalOutputItemList class

A paginated list of evaluation output items.

Annotations
  • @immutable

Constructors

EvalOutputItemList({required String object, required List<EvalOutputItem> data, required bool hasMore, String? firstId, String? lastId})
Creates an EvalOutputItemList.
const
EvalOutputItemList.fromJson(Map<String, dynamic> json)
Creates an EvalOutputItemList from JSON.
factory

Properties

data List<EvalOutputItem>
The list of output items.
final
firstId String?
The ID of the first item in this page.
final
hashCode int
The hash code for this object.
no setteroverride
hasMore bool
Whether there are more items available.
final
lastId String?
The ID of the last item in this page.
final
object String
The object type (always "list").
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Operators

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