JenkinsJob

data class JenkinsJob(val name: String, val url: String?, val description: String?, val lastBuild: JenkinsBuild?, val lastCompletedBuild: JenkinsBuild?, val lastFailedBuild: JenkinsBuild?, val lastStableBuild: JenkinsBuild?)

Represents a Jenkins job.

Constructors

Link copied to clipboard
constructor(info: JobInfo)

Creates a Jenkins job from a JobInfo object.

constructor(name: String, url: String?, description: String?, lastBuild: JenkinsBuild?, lastCompletedBuild: JenkinsBuild?, lastFailedBuild: JenkinsBuild?, lastStableBuild: JenkinsBuild?)

Properties

Link copied to clipboard

The description of the job.

Link copied to clipboard

The last build of the job.

Link copied to clipboard

The last completed build of the job.

Link copied to clipboard

The last failed build of the job.

Link copied to clipboard

The last stable build of the job.

Link copied to clipboard

The name of the job.

Link copied to clipboard
val url: String?

The URL of the job.