ru.testit.kotlin.client.models.PublicTestRunModel.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.AutoTestModel
import ru.testit.kotlin.client.models.ConfigurationModel
import ru.testit.kotlin.client.models.PublicTestPointModel
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param testRunId
* @param testPlanGlobalId
* @param name
* @param configurations
* @param autoTests
* @param testPoints
* @param status
* @param testPlanId
* @param productName
* @param build
* @param customParameters
* @param testRunDescription
*/
data class PublicTestRunModel (
@Json(name = "testRunId")
val testRunId: java.util.UUID,
@Json(name = "testPlanGlobalId")
val testPlanGlobalId: kotlin.Long,
@Json(name = "name")
val name: kotlin.String,
@Json(name = "configurations")
val configurations: kotlin.collections.List,
@Json(name = "autoTests")
val autoTests: kotlin.collections.List,
@Json(name = "testPoints")
val testPoints: kotlin.collections.List,
@Json(name = "status")
val status: kotlin.String,
@Json(name = "testPlanId")
val testPlanId: java.util.UUID? = null,
@Json(name = "productName")
val productName: kotlin.String? = null,
@Json(name = "build")
val build: kotlin.String? = null,
@Json(name = "customParameters")
val customParameters: kotlin.collections.Map? = null,
@Json(name = "testRunDescription")
val testRunDescription: kotlin.String? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy