mirror of
https://github.com/drone/drone-cli.git
synced 2025-07-29 19:14:18 +02:00
17 lines
487 B
Go
17 lines
487 B
Go
package common
|
|
|
|
type Commit struct {
|
|
ID int64 `json:"id"`
|
|
Status string `json:"status"`
|
|
Started int64 `json:"started_at"`
|
|
Finished int64 `json:"finished_at"`
|
|
Duration int64 `json:"duration"`
|
|
Sha string `json:"sha"`
|
|
Branch string `json:"branch"`
|
|
PullRequest string `json:"pull_request"`
|
|
Author string `json:"author"`
|
|
Gravatar string `json:"gravatar"`
|
|
Timestamp string `json:"timestamp"`
|
|
Message string `json:"message"`
|
|
}
|