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

src.main.kotlin.com.gabrielfeo.develocity.api.model.GradleDeprecationUsage.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.GradleDeprecationOwner

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

/**
 * 
 *
 * @param owner 
 * @param contextualAdvice Advice on how to avoid using the deprecated feature, that is specific to this particular usage. `null` when no advice is available.
 */


data class GradleDeprecationUsage (

    @Json(name = "owner")
    val owner: GradleDeprecationOwner,

    /* Advice on how to avoid using the deprecated feature, that is specific to this particular usage. `null` when no advice is available. */
    @Json(name = "contextualAdvice")
    val contextualAdvice: kotlin.String? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy