ru.testit.kotlin.client.models.TestResultModel.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.AttachmentModel
import ru.testit.kotlin.client.models.AttachmentModelAutoTestStepResultsModel
import ru.testit.kotlin.client.models.AutoTestModel
import ru.testit.kotlin.client.models.LinkModel
import ru.testit.kotlin.client.models.StepCommentModel
import ru.testit.kotlin.client.models.StepResultModel
import ru.testit.kotlin.client.models.TestPointPutModel
import ru.testit.kotlin.client.models.TestResultOutcome
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param configurationId
* @param testPointId
* @param testRunId
* @param workItemVersionId
* @param id
* @param createdDate
* @param createdById
* @param failureClassIds
* @param autoTestId
* @param startedOn
* @param completedOn
* @param durationInMs
* @param traces
* @param failureType
* @param message
* @param runByUserId
* @param stoppedByUserId
* @param testPoint
* @param autoTest
* @param autoTestStepResults
* @param setupResults
* @param teardownResults
* @param workItemVersionNumber
* @param parameters
* @param properties
* @param modifiedDate
* @param modifiedById
* @param stepComments
* @param outcome
* @param comment
* @param links
* @param stepResults
* @param attachments
*/
data class TestResultModel (
@Json(name = "configurationId")
val configurationId: java.util.UUID,
@Json(name = "testPointId")
val testPointId: java.util.UUID,
@Json(name = "testRunId")
val testRunId: java.util.UUID,
@Json(name = "workItemVersionId")
val workItemVersionId: java.util.UUID,
@Json(name = "id")
val id: java.util.UUID,
@Json(name = "createdDate")
val createdDate: java.time.OffsetDateTime,
@Json(name = "createdById")
val createdById: java.util.UUID,
@Json(name = "failureClassIds")
val failureClassIds: kotlin.collections.List,
@Json(name = "autoTestId")
val autoTestId: java.util.UUID? = null,
@Json(name = "startedOn")
val startedOn: java.time.OffsetDateTime? = null,
@Json(name = "completedOn")
val completedOn: java.time.OffsetDateTime? = null,
@Json(name = "durationInMs")
val durationInMs: kotlin.Long? = null,
@Json(name = "traces")
val traces: kotlin.String? = null,
@Json(name = "failureType")
val failureType: kotlin.String? = null,
@Json(name = "message")
val message: kotlin.String? = null,
@Json(name = "runByUserId")
val runByUserId: java.util.UUID? = null,
@Json(name = "stoppedByUserId")
val stoppedByUserId: java.util.UUID? = null,
@Json(name = "testPoint")
val testPoint: TestPointPutModel? = null,
@Json(name = "autoTest")
val autoTest: AutoTestModel? = null,
@Json(name = "autoTestStepResults")
val autoTestStepResults: kotlin.collections.List? = null,
@Json(name = "setupResults")
val setupResults: kotlin.collections.List? = null,
@Json(name = "teardownResults")
val teardownResults: kotlin.collections.List? = null,
@Json(name = "workItemVersionNumber")
val workItemVersionNumber: kotlin.Int? = null,
@Json(name = "parameters")
val parameters: kotlin.collections.Map? = null,
@Json(name = "properties")
val properties: kotlin.collections.Map? = null,
@Json(name = "modifiedDate")
val modifiedDate: java.time.OffsetDateTime? = null,
@Json(name = "modifiedById")
val modifiedById: java.util.UUID? = null,
@Json(name = "stepComments")
val stepComments: kotlin.collections.List? = null,
@Json(name = "outcome")
val outcome: TestResultOutcome? = null,
@Json(name = "comment")
val comment: kotlin.String? = null,
@Json(name = "links")
val links: kotlin.collections.List? = null,
@Json(name = "stepResults")
val stepResults: kotlin.collections.List? = null,
@Json(name = "attachments")
val attachments: kotlin.collections.List? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy