ComparisonAction

data class ComparisonAction(@Json(name = "hasNameChanged") val hasNameChanged: Boolean, @Json(name = "hasImplementationChanged") val hasImplementationChanged: Boolean, @Json(name = "displayNameA") val displayNameA: String? = null, @Json(name = "displayNameB") val displayNameB: String? = null)

A task action comparison.

Parameters

hasNameChanged

Whether the action name changed between builds.

hasImplementationChanged

Whether the action implementation changed between builds.

displayNameA

The action display name in build A. Null when the action is not present in build A.

displayNameB

The action display name in build B. Null when the action is not present in build B.

Constructors

Link copied to clipboard
constructor(@Json(name = "hasNameChanged") hasNameChanged: Boolean, @Json(name = "hasImplementationChanged") hasImplementationChanged: Boolean, @Json(name = "displayNameA") displayNameA: String? = null, @Json(name = "displayNameB") displayNameB: String? = null)

Properties

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