com.tencent.devops.process.pojo.open.BuildStatusInfo.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.open
import com.tencent.devops.common.pipeline.enums.BuildStatus
/**
* open接口返回的构建状态封装
*/
data class BuildStatusInfo(
val startUser: String,
val debug: Boolean,
val status: BuildStatus
)