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

src.main.kotlin.com.gabrielfeo.develocity.api.model.Project.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 project.
 *
 * @param id The unique identifier for the project. Must not contain whitespace.
 * @param displayName The label used when displaying the project.
 * @param description The description of the project group.
 */


data class Project (

    /* The unique identifier for the project. Must not contain whitespace. */
    @Json(name = "id")
    val id: kotlin.String,

    /* The label used when displaying the project. */
    @Json(name = "displayName")
    val displayName: kotlin.String? = null,

    /* The description of the project group. */
    @Json(name = "description")
    val description: kotlin.String? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy