ListRunStepsRequest

data class ListRunStepsRequest(var limit: Int? = null, var order: ListOrder? = null, var after: String? = null, var before: String? = null)

Represents a request to list all RunSteps in a Run. If a Run has too many steps, you may need to use the after or before parameters to page through them via multiple requests (Though it is extraordinarily rare to have more then 100 steps in 1 run).

Constructors

Link copied to clipboard
constructor(limit: Int? = null, order: ListOrder? = null, after: String? = null, before: String? = null)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
@ApiStatus.Internal
fun toMap(): Map<String, Any>

Converts the request to a map of query parameters.

Properties

Link copied to clipboard

The cursor to use for pagination

Link copied to clipboard

The cursor to use for pagination

Link copied to clipboard
var limit: Int?

The maximum number of results to return, between 1 and 100 inclusive

Link copied to clipboard

The order to return the list in