net.nemerosa.ontrack.kdsl.spec.PromotionRun.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-kdsl Show documentation
Show all versions of ontrack-kdsl Show documentation
Ontrack module: ontrack-kdsl
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 run.
*
* @property connector Ontrack connector
* @property id Promotion run ID
* @property name Promotion run name
* @property description Promotion run description
*/
class PromotionRun(
connector: Connector,
id: UInt,
val description: String?,
) : ProjectEntity(connector, ProjectEntityType.PROMOTION_RUN, id)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy