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

src.main.kotlin.com.gabrielfeo.develocity.api.model.TestDistributionAgentPoolRegistrationKey.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.squareup.moshi.Json
import com.squareup.moshi.JsonClass

/**
 * A Test Distribution pool-specific agent registration key.
 *
 * @param key The agent API key.
 * @param description Description of the registration key to help identify it later.
 */


data class TestDistributionAgentPoolRegistrationKey (

    /* The agent API key. */
    @Json(name = "key")
    val key: kotlin.String,

    /* Description of the registration key to help identify it later. */
    @Json(name = "description")
    val description: kotlin.String? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy