ru.testit.kotlin.client.models.TestPlanPutModel.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.TagPostModel
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param id
* @param name
* @param projectId
* @param attributes
* @param lockedById
* @param tags
* @param startDate Used for analytics
* @param endDate Used for analytics
* @param description
* @param build
* @param productName
* @param hasAutomaticDurationTimer
*/
data class TestPlanPutModel (
@Json(name = "id")
val id: java.util.UUID,
@Json(name = "name")
val name: kotlin.String,
@Json(name = "projectId")
val projectId: java.util.UUID,
@Json(name = "attributes")
val attributes: kotlin.collections.Map,
@Json(name = "lockedById")
val lockedById: java.util.UUID? = null,
@Json(name = "tags")
val tags: kotlin.collections.List? = null,
/* Used for analytics */
@Json(name = "startDate")
val startDate: java.time.OffsetDateTime? = null,
/* Used for analytics */
@Json(name = "endDate")
val endDate: java.time.OffsetDateTime? = null,
@Json(name = "description")
val description: kotlin.String? = null,
@Json(name = "build")
val build: kotlin.String? = null,
@Json(name = "productName")
val productName: kotlin.String? = null,
@Json(name = "hasAutomaticDurationTimer")
val hasAutomaticDurationTimer: kotlin.Boolean? = null
) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy