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

src.main.kotlin.com.gabrielfeo.develocity.api.model.TestContainersQuery.kt Maven / Gradle / Ivy

The 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 com.gabrielfeo.develocity.api.model

import com.gabrielfeo.develocity.api.model.TestIncludeFields
import com.gabrielfeo.develocity.api.model.TestOutcome

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

/**
 * 
 *
 * @param container Allows restricting the search to parts of the test container hierarchy. You can use wildcards to match a specific subpackage.
 * @param testOutcomes Allows restricting the search to tests that had at least one instance of the given outcome.
 * @param query A query for filtering tests, written in the Develocity advanced search query language See: https://gradle.com/help/advanced-search 
 * @param include Controls which optional fields are included in the response.
 */


data class TestContainersQuery (

    /* Allows restricting the search to parts of the test container hierarchy. You can use wildcards to match a specific subpackage. */
    @Json(name = "container")
    val container: kotlin.String = "*",

    /* Allows restricting the search to tests that had at least one instance of the given outcome. */
    @Json(name = "testOutcomes")
    val testOutcomes: kotlin.collections.List,

    /* A query for filtering tests, written in the Develocity advanced search query language See: https://gradle.com/help/advanced-search  */
    @Json(name = "query")
    val query: kotlin.String,

    /* Controls which optional fields are included in the response. */
    @Json(name = "include")
    val include: kotlin.collections.List? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy