net.nemerosa.ontrack.model.structure.RunInfoInput.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.structure
import net.nemerosa.ontrack.model.annotations.APIDescription
class RunInfoInput(
@APIDescription("Type of source (like \"github\")")
val sourceType: String? = null,
@APIDescription("URI to the source of the run (like the URL to a Jenkins job)")
val sourceUri: String? = null,
@APIDescription("Type of trigger (like \"scm\" or \"user\")")
val triggerType: String? = null,
@APIDescription("Data associated with the trigger (like a user ID or a commit)")
val triggerData: String? = null,
@APIDescription("Time of the run (in seconds)")
val runTime: Int? = null
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy