com.tencent.devops.process.pojo.trigger.PipelineTriggerFailedMsg.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.trigger
import io.swagger.v3.oas.annotations.media.Schema
@Schema(title = "流水线触发事件原因详情-不需要转换的错误信息")
data class PipelineTriggerFailedMsg(
val msg: String
) : PipelineTriggerReasonDetail {
companion object {
const val classType = "msg"
}
override fun getReasonDetailList(): List {
return listOf(msg)
}
}