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

ru.testit.kotlin.client.models.TestSuiteV2TreeModel.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.TestSuiteType

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

/**
 * 
 *
 * @param id Unique ID of the test suite
 * @param testPlanId Unique ID of test plan to which the test suite belongs
 * @param name Name of the test suite
 * @param children nested enumeration of children is allowed
 * @param refreshDate Date of the last refresh of the test suite
 * @param parentId Unique ID of the parent test suite in hierarchy
 * @param type Type of the test suite
 * @param saveStructure Indicates if the test suite retains section tree structure
 * @param autoRefresh Indicates if scheduled auto refresh is enabled for the test suite
 */


data class TestSuiteV2TreeModel (

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

    /* Unique ID of test plan to which the test suite belongs */
    @Json(name = "testPlanId")
    val testPlanId: java.util.UUID,

    /* Name of the test suite */
    @Json(name = "name")
    val name: kotlin.String,

    /* nested enumeration of children is allowed */
    @Json(name = "children")
    @Deprecated(message = "This property is deprecated.")
    val children: kotlin.collections.List? = null,

    /* Date of the last refresh of the test suite */
    @Json(name = "refreshDate")
    val refreshDate: java.time.OffsetDateTime? = null,

    /* Unique ID of the parent test suite in hierarchy */
    @Json(name = "parentId")
    val parentId: java.util.UUID? = null,

    /* Type of the test suite */
    @Json(name = "type")
    val type: TestSuiteType? = null,

    /* Indicates if the test suite retains section tree structure */
    @Json(name = "saveStructure")
    val saveStructure: kotlin.Boolean? = null,

    /* Indicates if scheduled auto refresh is enabled for the test suite */
    @Json(name = "autoRefresh")
    val autoRefresh: kotlin.Boolean? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy