src.main.kotlin.com.gabrielfeo.develocity.api.model.GradlePlugin.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.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param className The fully qualified class name of the plugin.
* @param projects The paths of the projects where the plugin is applied. Will always be an array of size 1 for a single project build.
* @param id The plugin ID. May be `null`.
* @param version The plugin version. May be `null`.
*/
data class GradlePlugin (
/* The fully qualified class name of the plugin. */
@Json(name = "className")
val className: kotlin.String,
/* The paths of the projects where the plugin is applied. Will always be an array of size 1 for a single project build. */
@Json(name = "projects")
val projects: kotlin.collections.List,
/* The plugin ID. May be `null`. */
@Json(name = "id")
val id: kotlin.String? = null,
/* The plugin version. May be `null`. */
@Json(name = "version")
val version: kotlin.String? = null
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy