src.main.kotlin.com.gabrielfeo.develocity.api.model.ResourceUsageMetric.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
/**
*
*
* @param max The max value of the metric.
* @param average The average value of the metric.
* @param median The median (or 50th percentile) value of the metric.
* @param p5 The 5th percentile value of the metric.
* @param p25 The 25th percentile value of the metric.
* @param p75 The 75th percentile value of the metric.
* @param p95 The 95th percentile value of the metric.
*/
data class ResourceUsageMetric (
/* The max value of the metric. */
@Json(name = "max")
val max: kotlin.Long,
/* The average value of the metric. */
@Json(name = "average")
val average: kotlin.Long,
/* The median (or 50th percentile) value of the metric. */
@Json(name = "median")
val median: kotlin.Long,
/* The 5th percentile value of the metric. */
@Json(name = "p5")
val p5: kotlin.Long,
/* The 25th percentile value of the metric. */
@Json(name = "p25")
val p25: kotlin.Long,
/* The 75th percentile value of the metric. */
@Json(name = "p75")
val p75: kotlin.Long,
/* The 95th percentile value of the metric. */
@Json(name = "p95")
val p95: kotlin.Long
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy