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

ru.testit.kotlin.client.models.TestRunFillByWorkItemsPostModel.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.AttachmentPutModel
import ru.testit.kotlin.client.models.LinkPostModel

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

/**
 * 
 *
 * @param configurationIds Specifies the configuration GUIDs, from which test points are created. You can specify several GUIDs.
 * @param workItemIds Specifies the work item GUIDs, from which test points are created. You can specify several GUIDs.
 * @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 TestRunFillByWorkItemsPostModel (

    /* Specifies the configuration GUIDs, from which test points are created. You can specify several GUIDs. */
    @Json(name = "configurationIds")
    val configurationIds: kotlin.collections.List,

    /* Specifies the work item GUIDs, from which test points are created. You can specify several GUIDs. */
    @Json(name = "workItemIds")
    val workItemIds: 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