src.main.kotlin.com.gabrielfeo.develocity.api.model.BuildQuery.kt Maven / Gradle / Ivy
/**
*
* Please note:
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit this file manually.
*
*/
@file:Suppress(
"ArrayInDataClass",
"EnumEntryName",
"RemoveRedundantQualifierName",
"UnusedImport"
)
package com.gabrielfeo.develocity.api.model
import com.gabrielfeo.develocity.api.model.BuildModelName
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param models The list of build models to return in the response for each build. If not provided, no models are returned.
* @param allModels Whether to include all build models for the build. If set to `true`, the value of the `models` parameter is ignored.
* @param availabilityWaitTimeoutSecs The time in seconds the server should wait for ingestion before returning a wait timeout response.
*/
data class BuildQuery (
/* The list of build models to return in the response for each build. If not provided, no models are returned. */
@Json(name = "models")
val models: kotlin.collections.List? = null,
/* Whether to include all build models for the build. If set to `true`, the value of the `models` parameter is ignored. */
@Json(name = "allModels")
val allModels: kotlin.Boolean? = false,
/* The time in seconds the server should wait for ingestion before returning a wait timeout response. */
@Json(name = "availabilityWaitTimeoutSecs")
val availabilityWaitTimeoutSecs: kotlin.Int? = null
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy