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

net.nemerosa.ontrack.kdsl.spec.PromotionLevel.kt Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.kdsl.spec

import net.nemerosa.ontrack.kdsl.connector.Connector
import net.nemerosa.ontrack.kdsl.connector.graphql.schema.type.ProjectEntityType

/**
 * Representation of a promotion level.
 *
 * @property connector Ontrack connector
 * @property id Promotion level ID
 * @property name Promotion level name
 * @property description Promotion level description
 */
class PromotionLevel(
    connector: Connector,
    id: UInt,
    val name: String,
    val description: String?,
) : ProjectEntity(connector, ProjectEntityType.PROMOTION_LEVEL, id)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy