1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-23 09:21:56 +01:00
drone-cli/common/build.go
2015-03-12 13:56:40 -07:00

12 lines
277 B
Go

package common
// Build represents a build
type Build struct {
Status string `json:"status"`
ExitCode int `json:"exit_code"`
Started int64 `json:"started_at"`
Finished int64 `json:"finished_at"`
Duration int64 `json:"duration"`
Label string `json:"label"`
}