ru.testit.kotlin.client.models.TestRunTestResultsPartialBulkSetModel.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.LinkPostModel
import ru.testit.kotlin.client.models.TestRunTestResultsSelectModel
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param selector Object with filters and extraction parameters
* @param resultReasonIds Unique IDs of result reasons to be assigned to test results
* @param links Collection of links to be assigned to test results
* @param comment Comment to be added to test results
* @param attachmentIds Unique IDs of files to be attached to test results
*/
data class TestRunTestResultsPartialBulkSetModel (
/* Object with filters and extraction parameters */
@Json(name = "selector")
val selector: TestRunTestResultsSelectModel? = null,
/* Unique IDs of result reasons to be assigned to test results */
@Json(name = "resultReasonIds")
val resultReasonIds: kotlin.collections.Set? = null,
/* Collection of links to be assigned to test results */
@Json(name = "links")
val links: kotlin.collections.Set? = null,
/* Comment to be added to test results */
@Json(name = "comment")
val comment: kotlin.String? = null,
/* Unique IDs of files to be attached to test results */
@Json(name = "attachmentIds")
val attachmentIds: kotlin.collections.Set? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy