src.main.kotlin.com.gabrielfeo.develocity.api.model.TestOutcomeDistribution.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
/**
* A distribution of outcomes.
*
* @param passed The number of 'Passed' outcomes.
* @param failed The number of 'Failed' outcomes.
* @param skipped The number of 'Skipped' outcomes.
* @param flaky The number of 'Flaky' outcomes.
* @param notSelected The number of 'Not Selected' outcomes.
* @param total The total number of outcomes.
*/
data class TestOutcomeDistribution (
/* The number of 'Passed' outcomes. */
@Json(name = "passed")
val passed: kotlin.Int,
/* The number of 'Failed' outcomes. */
@Json(name = "failed")
val failed: kotlin.Int,
/* The number of 'Skipped' outcomes. */
@Json(name = "skipped")
val skipped: kotlin.Int,
/* The number of 'Flaky' outcomes. */
@Json(name = "flaky")
val flaky: kotlin.Int,
/* The number of 'Not Selected' outcomes. */
@Json(name = "notSelected")
val notSelected: kotlin.Int,
/* The total number of outcomes. */
@Json(name = "total")
val total: kotlin.Int
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy