com.tencent.devops.process.pojo.SetContextVarData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-process Show documentation
Show all versions of api-process Show documentation
Tencent blueking ci project
The newest version!
package com.tencent.devops.process.pojo
data class SetContextVarData(
val projectId: String,
val pipelineId: String,
val buildId: String,
val contextName: String,
val contextVal: String,
val readOnly: Boolean?,
val rewriteReadOnly: Boolean?
)