PreBuildStepResponse

data class PreBuildStepResponse(val description: String? = null, val httpGet: HttpGetResponse? = null, val scripts: List<String>? = null)

Model representing a pre-build step.

Constructors

Link copied to clipboard
constructor(description: String? = null, httpGet: HttpGetResponse? = null, scripts: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

Description of the pre-build step.

Link copied to clipboard

Http get request to send before the build.

Link copied to clipboard
val scripts: List<String>? = null

List of custom commands to run.