All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.kotlin.com.gabrielfeo.develocity.api.model.TestOutcomeDistribution.kt Maven / Gradle / Ivy

The newest version!
/**
 *
 * 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 - 2024 Weber Informatics LLC | Privacy Policy