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

src.main.kotlin.com.gabrielfeo.develocity.api.model.KeySecretPair.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 Build Cache Node key and secret pair.
 *
 * @param key A unique identifier for the Build Cache Node in Develocity.
 * @param secret The secret associated with the Build Cache Node.
 */


data class KeySecretPair (

    /* A unique identifier for the Build Cache Node in Develocity. */
    @Json(name = "key")
    val key: kotlin.String,

    /* The secret associated with the Build Cache Node. */
    @Json(name = "secret")
    val secret: kotlin.String

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy