src.main.kotlin.com.gabrielfeo.develocity.api.model.GradleDeprecationEntry.kt Maven / Gradle / Ivy
/**
*
* 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.GradleDeprecationUsage
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param summary The description of the deprecation.
* @param removalDetails The details about when the deprecated feature will be removed from Gradle.
* @param usages List of usages of this deprecation.
* @param advice The advice on how to avoid using the deprecated feature. `null` when no advice is available.
* @param documentationUrl The external url pointing to some documentation about the deprecation. `null` for older Gradle/plugin combination or certain deprecation notices.
*/
data class GradleDeprecationEntry (
/* The description of the deprecation. */
@Json(name = "summary")
val summary: kotlin.String,
/* The details about when the deprecated feature will be removed from Gradle. */
@Json(name = "removalDetails")
val removalDetails: kotlin.String,
/* List of usages of this deprecation. */
@Json(name = "usages")
val usages: kotlin.collections.List,
/* The advice on how to avoid using the deprecated feature. `null` when no advice is available. */
@Json(name = "advice")
val advice: kotlin.String? = null,
/* The external url pointing to some documentation about the deprecation. `null` for older Gradle/plugin combination or certain deprecation notices. */
@Json(name = "documentationUrl")
val documentationUrl: kotlin.String? = null
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy