src.main.kotlin.com.gabrielfeo.develocity.api.model.BuildScanIdsByOutcome.kt Maven / Gradle / Ivy
/**
*
* Please note:
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit this file manually.
*
*/
@file:Suppress(
"ArrayInDataClass",
"EnumEntryName",
"RemoveRedundantQualifierName",
"UnusedImport"
)
package com.gabrielfeo.develocity.api.model
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
* Build Scan IDs for builds that contain tests with outcomes.
*
* @param passed The BuildIds of 'Passed' outcomes.
* @param failed The Build Scan IDs of 'Failed' outcomes.
* @param skipped The BuildIds of 'Skipped' outcomes.
* @param flaky The BuildIds of 'Flaky' outcomes.
* @param notSelected The BuildIds of 'Not Selected' outcomes.
*/
data class BuildScanIdsByOutcome (
/* The BuildIds of 'Passed' outcomes. */
@Json(name = "passed")
val passed: kotlin.collections.List,
/* The Build Scan IDs of 'Failed' outcomes. */
@Json(name = "failed")
val failed: kotlin.collections.List,
/* The BuildIds of 'Skipped' outcomes. */
@Json(name = "skipped")
val skipped: kotlin.collections.List,
/* The BuildIds of 'Flaky' outcomes. */
@Json(name = "flaky")
val flaky: kotlin.collections.List,
/* The BuildIds of 'Not Selected' outcomes. */
@Json(name = "notSelected")
val notSelected: kotlin.collections.List
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy