BuildQuery

data class BuildQuery(@Json(name = "models") val models: List<BuildModelName>? = null, @Json(name = "allModels") val allModels: Boolean? = false, @Json(name = "availabilityWaitTimeoutSecs") val availabilityWaitTimeoutSecs: Int? = null, @Json(name = "skipUnavailableModels") val skipUnavailableModels: Boolean? = null)

Parameters

models

The list of build models to return in the response for each build. If not provided, no models are returned.

allModels

Whether to include all build models for the build. If set to true, the value of the models parameter is ignored.

availabilityWaitTimeoutSecs

The time in seconds the server should wait for ingestion before returning a wait timeout response.

skipUnavailableModels

Will skip build models that are not available at the time of the handling of the call.

Constructors

Link copied to clipboard
constructor(@Json(name = "models") models: List<BuildModelName>? = null, @Json(name = "allModels") allModels: Boolean? = false, @Json(name = "availabilityWaitTimeoutSecs") availabilityWaitTimeoutSecs: Int? = null, @Json(name = "skipUnavailableModels") skipUnavailableModels: Boolean? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard