ru.testit.kotlin.client.models.TestPointByTestSuiteModel.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 com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param id Test point unique internal identifier
* @param iterationId Iteration unique identifier
* @param testerId Tester who is responded for the test unique internal identifier
* @param workItemId Workitem to which test point relates unique identifier
* @param configurationId Configuration to which test point relates unique identifier
* @param status Test point status Applies one of these values: Blocked, NoResults, Failed, Passed
* @param lastTestResultId Last test result unique identifier
* @param workItemMedianDuration Median duration of work item the test point represents
*/
data class TestPointByTestSuiteModel (
/* Test point unique internal identifier */
@Json(name = "id")
val id: java.util.UUID,
/* Iteration unique identifier */
@Json(name = "iterationId")
val iterationId: java.util.UUID,
/* Tester who is responded for the test unique internal identifier */
@Json(name = "testerId")
val testerId: java.util.UUID? = null,
/* Workitem to which test point relates unique identifier */
@Json(name = "workItemId")
val workItemId: java.util.UUID? = null,
/* Configuration to which test point relates unique identifier */
@Json(name = "configurationId")
val configurationId: java.util.UUID? = null,
/* Test point status Applies one of these values: Blocked, NoResults, Failed, Passed */
@Json(name = "status")
val status: kotlin.String? = null,
/* Last test result unique identifier */
@Json(name = "lastTestResultId")
val lastTestResultId: java.util.UUID? = null,
/* Median duration of work item the test point represents */
@Json(name = "workItemMedianDuration")
val workItemMedianDuration: kotlin.Long? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy