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

src.main.kotlin.com.gabrielfeo.develocity.api.model.GradleResourceUsage.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.gabrielfeo.develocity.api.model.ResourceUsageBreakdown

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass

/**
 * 
 *
 * @param totalMemory The physical memory of the system in bytes. Can be `null` if the metrics could not be captured.
 * @param total 
 * @param nonExecution 
 * @param execution 
 */


data class GradleResourceUsage (

    /* The physical memory of the system in bytes. Can be `null` if the metrics could not be captured. */
    @Json(name = "totalMemory")
    val totalMemory: kotlin.Long? = null,

    @Json(name = "total")
    val total: ResourceUsageBreakdown? = null,

    @Json(name = "nonExecution")
    val nonExecution: ResourceUsageBreakdown? = null,

    @Json(name = "execution")
    val execution: ResourceUsageBreakdown? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy