ru.testit.kotlin.client.models.AutoTestPostModel.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.AutoTestStepModel
import ru.testit.kotlin.client.models.LabelPostModel
import ru.testit.kotlin.client.models.LinkPostModel
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param externalId External ID of the autotest
* @param projectId Unique ID of the autotest project
* @param name Name of the autotest
* @param workItemIdsForLinkWithAutoTest Specifies the IDs of work items to link your autotest to. You can specify several IDs.
* @param shouldCreateWorkItem Creates a test case linked to the autotest.
* @param attributes Key value pair of custom work item attributes
* @param links Collection of the autotest links
* @param namespace Name of the autotest namespace
* @param classname Name of the autotest class
* @param steps Collection of the autotest steps
* @param setup Collection of the autotest setup steps
* @param teardown Collection of the autotest teardown steps
* @param title Name of the autotest in autotest's card
* @param description Description of the autotest in autotest's card
* @param labels Collection of the autotest labels
* @param isFlaky Indicates if the autotest is marked as flaky
* @param externalKey External key of the autotest
*/
data class AutoTestPostModel (
/* External ID of the autotest */
@Json(name = "externalId")
val externalId: kotlin.String,
/* Unique ID of the autotest project */
@Json(name = "projectId")
val projectId: java.util.UUID,
/* Name of the autotest */
@Json(name = "name")
val name: kotlin.String,
/* Specifies the IDs of work items to link your autotest to. You can specify several IDs. */
@Json(name = "workItemIdsForLinkWithAutoTest")
val workItemIdsForLinkWithAutoTest: kotlin.collections.Set? = null,
/* Creates a test case linked to the autotest. */
@Json(name = "shouldCreateWorkItem")
val shouldCreateWorkItem: kotlin.Boolean? = null,
/* Key value pair of custom work item attributes */
@Json(name = "attributes")
val attributes: kotlin.collections.Map? = null,
/* Collection of the autotest links */
@Json(name = "links")
val links: kotlin.collections.List? = null,
/* Name of the autotest namespace */
@Json(name = "namespace")
val namespace: kotlin.String? = null,
/* Name of the autotest class */
@Json(name = "classname")
val classname: kotlin.String? = null,
/* Collection of the autotest steps */
@Json(name = "steps")
val steps: kotlin.collections.List? = null,
/* Collection of the autotest setup steps */
@Json(name = "setup")
val setup: kotlin.collections.List? = null,
/* Collection of the autotest teardown steps */
@Json(name = "teardown")
val teardown: kotlin.collections.List? = null,
/* Name of the autotest in autotest's card */
@Json(name = "title")
val title: kotlin.String? = null,
/* Description of the autotest in autotest's card */
@Json(name = "description")
val description: kotlin.String? = null,
/* Collection of the autotest labels */
@Json(name = "labels")
val labels: kotlin.collections.List? = null,
/* Indicates if the autotest is marked as flaky */
@Json(name = "isFlaky")
val isFlaky: kotlin.Boolean? = null,
/* External key of the autotest */
@Json(name = "externalKey")
val externalKey: kotlin.String? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy