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

ru.testit.kotlin.client.models.TestRunV2GetModel.kt Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show 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 ru.testit.kotlin.client.models

import ru.testit.kotlin.client.models.AttachmentModel
import ru.testit.kotlin.client.models.LinkModel
import ru.testit.kotlin.client.models.NamedEntityModel
import ru.testit.kotlin.client.models.TestResultV2GetModel
import ru.testit.kotlin.client.models.TestRunState

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

/**
 * 
 *
 * @param stateName 
 * @param projectId This property is used to link test run with project
 * @param createdDate 
 * @param createdById 
 * @param attachments 
 * @param links 
 * @param webhooks 
 * @param id 
 * @param name 
 * @param startedOn 
 * @param completedOn 
 * @param testPlanId This property is used to link test run with test plan
 * @param testResults 
 * @param modifiedDate 
 * @param modifiedById 
 * @param createdByUserName 
 * @param customParameters 
 * @param description 
 * @param launchSource Once launch source is specified it cannot be updated
 */


data class TestRunV2GetModel (

    @Json(name = "stateName")
    val stateName: TestRunState,

    /* This property is used to link test run with project */
    @Json(name = "projectId")
    val projectId: java.util.UUID,

    @Json(name = "createdDate")
    val createdDate: java.time.OffsetDateTime,

    @Json(name = "createdById")
    val createdById: java.util.UUID,

    @Json(name = "attachments")
    val attachments: kotlin.collections.List,

    @Json(name = "links")
    val links: kotlin.collections.List,

    @Json(name = "webhooks")
    val webhooks: kotlin.collections.List,

    @Json(name = "id")
    val id: java.util.UUID,

    @Json(name = "name")
    val name: kotlin.String,

    @Json(name = "startedOn")
    val startedOn: java.time.OffsetDateTime? = null,

    @Json(name = "completedOn")
    val completedOn: java.time.OffsetDateTime? = null,

    /* This property is used to link test run with test plan */
    @Json(name = "testPlanId")
    val testPlanId: java.util.UUID? = null,

    @Json(name = "testResults")
    val testResults: kotlin.collections.List? = null,

    @Json(name = "modifiedDate")
    val modifiedDate: java.time.OffsetDateTime? = null,

    @Json(name = "modifiedById")
    val modifiedById: java.util.UUID? = null,

    @Json(name = "createdByUserName")
    val createdByUserName: kotlin.String? = null,

    @Json(name = "customParameters")
    val customParameters: kotlin.collections.Map? = null,

    @Json(name = "description")
    val description: kotlin.String? = null,

    /* Once launch source is specified it cannot be updated */
    @Json(name = "launchSource")
    val launchSource: kotlin.String? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy