ListRunStepsResponse

data class ListRunStepsResponse(val data: List<RunStep>, val firstId: String?, val lastId: String?, val hasMore: Boolean)

A data class which represents a response from the OpenAI API containing a list of RunSteps.

When the list is empty, firstId and lastId will be null.

Constructors

Link copied to clipboard
constructor(data: List<RunStep>, firstId: String?, lastId: String?, hasMore: Boolean)

Properties

Link copied to clipboard

The list of RunSteps

Link copied to clipboard

The ID of the first RunStep in the list, or null

Link copied to clipboard

Whether there are more RunSteps to retrieve from the API

Link copied to clipboard

The ID of the last RunStep in the list, or null