Build
data class Build( @Json(name = "id") val id: String, @Json(name = "availableAt") val availableAt: Long, @Json(name = "buildToolType") val buildToolType: String, @Json(name = "buildToolVersion") val buildToolVersion: String, @Json(name = "buildAgentVersion") val buildAgentVersion: String, @Json(name = "models") val models: BuildModels? = null)
A build with common attributes.
Parameters
id
The Build Scan ID.
availableAt
A unix-epoch-time in milliseconds referring to the instant that Develocity completed receiving and processing the build.
buildToolType
The build tool type of the build.
buildToolVersion
The build tool version used.
buildAgentVersion
The build agent version used.
models
Constructors
Link copied to clipboard
constructor( @Json(name = "id") id: String, @Json(name = "availableAt") availableAt: Long, @Json(name = "buildToolType") buildToolType: String, @Json(name = "buildToolVersion") buildToolVersion: String, @Json(name = "buildAgentVersion") buildAgentVersion: String, @Json(name = "models") models: BuildModels? = null)