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

src.main.kotlin.com.gabrielfeo.develocity.api.model.MavenModule.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 Maven module.
 *
 * @param name The name of the module.
 * @param groupId The group ID of the module.
 * @param artifactId The artifact ID of the module.
 * @param version The version of the module.
 * @param parent The index of the parent of this Maven module in the MavenModules array. `null` if this module has no parent (i.e. top level project).
 */


data class MavenModule (

    /* The name of the module. */
    @Json(name = "name")
    val name: kotlin.String,

    /* The group ID of the module. */
    @Json(name = "groupId")
    val groupId: kotlin.String,

    /* The artifact ID of the module. */
    @Json(name = "artifactId")
    val artifactId: kotlin.String,

    /* The version of the module. */
    @Json(name = "version")
    val version: kotlin.String,

    /* The index of the parent of this Maven module in the MavenModules array. `null` if this module has no parent (i.e. top level project). */
    @Json(name = "parent")
    val parent: kotlin.Int? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy