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

src.main.kotlin.com.gabrielfeo.develocity.api.model.TestCasesQuery.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 Must be the fully qualified name of the test container to query. May not contain any wildcards.
 * @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 limit The maximum number of test outcomes to query.
 * @param include Controls which optional fields are included in the response.
 */


data class TestCasesQuery (

    /* Must be the fully qualified name of the test container to query. May not contain any wildcards. */
    @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,

    /* The maximum number of test outcomes to query. */
    @Json(name = "limit")
    val limit: kotlin.Int? = 100,

    /* 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