ru.testit.kotlin.client.models.TestRunFillByConfigurationsPostModel.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.AttachmentPutModel
import ru.testit.kotlin.client.models.LinkPostModel
import ru.testit.kotlin.client.models.TestPointSelector
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param testPointSelectors Specifies an array of work items and configuration to create a test run for.
* @param projectId Specifies the GUID of the project, in which a test run will be created.
* @param testPlanId Specifies the GUID of the test plan, within which the test run will be created.
* @param name Specifies the name of the test run.
* @param description Specifies the test run description.
* @param launchSource Specifies the test run launch source.
* @param attachments Collection of attachment ids to relate to the test run
* @param links Collection of links to relate to the test run
*/
data class TestRunFillByConfigurationsPostModel (
/* Specifies an array of work items and configuration to create a test run for. */
@Json(name = "testPointSelectors")
val testPointSelectors: kotlin.collections.List,
/* Specifies the GUID of the project, in which a test run will be created. */
@Json(name = "projectId")
val projectId: java.util.UUID,
/* Specifies the GUID of the test plan, within which the test run will be created. */
@Json(name = "testPlanId")
val testPlanId: java.util.UUID,
/* Specifies the name of the test run. */
@Json(name = "name")
val name: kotlin.String? = null,
/* Specifies the test run description. */
@Json(name = "description")
val description: kotlin.String? = null,
/* Specifies the test run launch source. */
@Json(name = "launchSource")
val launchSource: kotlin.String? = null,
/* Collection of attachment ids to relate to the test run */
@Json(name = "attachments")
val attachments: kotlin.collections.List? = null,
/* Collection of links to relate to the test run */
@Json(name = "links")
val links: kotlin.collections.List? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy