mirror of
https://github.com/drone/drone-cli.git
synced 2025-07-14 08:04:17 +02:00
13 lines
306 B
Go
13 lines
306 B
Go
package common
|
|
|
|
// Build represents a build
|
|
type Build struct {
|
|
ID int64 `json:"id"`
|
|
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"`
|
|
}
|