ru.testit.kotlin.client.models.TestPointAnalyticResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testit-api-client-kotlin Show documentation
Show all versions of testit-api-client-kotlin Show documentation
Kotlin API client for TestIT.
/**
*
* 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 ru.testit.kotlin.client.models
import ru.testit.kotlin.client.models.TestPlanGroupByStatus
import ru.testit.kotlin.client.models.TestPlanGroupByTestSuite
import ru.testit.kotlin.client.models.TestPlanGroupByTester
import ru.testit.kotlin.client.models.TestPlanGroupByTesterAndStatus
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param countGroupByStatus
* @param sumGroupByTester
* @param countGroupByTester
* @param countGroupByTestSuite
* @param countGroupByTesterAndStatus
*/
data class TestPointAnalyticResult (
@Json(name = "countGroupByStatus")
val countGroupByStatus: kotlin.collections.List,
@Json(name = "sumGroupByTester")
val sumGroupByTester: kotlin.collections.List,
@Json(name = "countGroupByTester")
val countGroupByTester: kotlin.collections.List,
@Json(name = "countGroupByTestSuite")
val countGroupByTestSuite: kotlin.collections.List,
@Json(name = "countGroupByTesterAndStatus")
val countGroupByTesterAndStatus: kotlin.collections.List
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy