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

ru.testit.kotlin.client.models.AutoTestModelV2GetModel.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.AutoTestStepModel
import ru.testit.kotlin.client.models.LabelShortModel
import ru.testit.kotlin.client.models.LinkModel

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

/**
 * 
 *
 * @param externalId This property is used to set autotest identifier from client system
 * @param projectId This property is used to link autotest with project
 * @param name 
 * @param globalId 
 * @param createdById 
 * @param id Unique ID of the entity
 * @param isDeleted Indicates if the entity is deleted
 * @param links 
 * @param namespace 
 * @param classname 
 * @param steps 
 * @param setup 
 * @param teardown 
 * @param createdDate 
 * @param modifiedDate 
 * @param modifiedById 
 * @param labels 
 * @param externalKey 
 */


data class AutoTestModelV2GetModel (

    /* This property is used to set autotest identifier from client system */
    @Json(name = "externalId")
    val externalId: kotlin.String,

    /* This property is used to link autotest with project */
    @Json(name = "projectId")
    val projectId: java.util.UUID,

    @Json(name = "name")
    val name: kotlin.String,

    @Json(name = "globalId")
    val globalId: kotlin.Long,

    @Json(name = "createdById")
    val createdById: java.util.UUID,

    /* Unique ID of the entity */
    @Json(name = "id")
    val id: java.util.UUID,

    /* Indicates if the entity is deleted */
    @Json(name = "isDeleted")
    val isDeleted: kotlin.Boolean,

    @Json(name = "links")
    val links: kotlin.collections.List? = null,

    @Json(name = "namespace")
    val namespace: kotlin.String? = null,

    @Json(name = "classname")
    val classname: kotlin.String? = null,

    @Json(name = "steps")
    val steps: kotlin.collections.List? = null,

    @Json(name = "setup")
    val setup: kotlin.collections.List? = null,

    @Json(name = "teardown")
    val teardown: kotlin.collections.List? = null,

    @Json(name = "createdDate")
    val createdDate: java.time.OffsetDateTime? = null,

    @Json(name = "modifiedDate")
    val modifiedDate: java.time.OffsetDateTime? = null,

    @Json(name = "modifiedById")
    val modifiedById: java.util.UUID? = null,

    @Json(name = "labels")
    val labels: kotlin.collections.List? = null,

    @Json(name = "externalKey")
    val externalKey: kotlin.String? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy