com.tencent.devops.process.pojo.BuildTemplateAcrossInfo.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
import io.swagger.v3.oas.annotations.media.Schema
@Schema(title = "构建中跨项目引用模板信息")
data class BuildTemplateAcrossInfo(
val templateId: String,
val templateType: TemplateAcrossInfoType,
val templateInstancesIds: MutableList,
val targetProjectId: String
)
enum class TemplateAcrossInfoType {
JOB,
STEP
}