BuildScanIdsByOutcome

data class BuildScanIdsByOutcome(@Json(name = "passed") val passed: List<String>, @Json(name = "failed") val failed: List<String>, @Json(name = "skipped") val skipped: List<String>, @Json(name = "flaky") val flaky: List<String>, @Json(name = "notSelected") val notSelected: List<String>)

Build Scan IDs for builds that contain tests with outcomes.

Parameters

passed

The BuildIds of 'Passed' outcomes.

failed

The Build Scan IDs of 'Failed' outcomes.

skipped

The BuildIds of 'Skipped' outcomes.

flaky

The BuildIds of 'Flaky' outcomes.

notSelected

The BuildIds of 'Not Selected' outcomes.

Constructors

Link copied to clipboard
constructor(@Json(name = "passed") passed: List<String>, @Json(name = "failed") failed: List<String>, @Json(name = "skipped") skipped: List<String>, @Json(name = "flaky") flaky: List<String>, @Json(name = "notSelected") notSelected: List<String>)

Properties

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