Skip to content

Commit 133cdf5

Browse files
authored
chore(controller-sdk-go): release add exception field (#38)
1 parent d88e146 commit 133cdf5

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

api/releases.go

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ package api
22

33
// Release is the definition of the release object.
44
type Release struct {
5-
App string `json:"app"`
6-
State string `json:"state"`
7-
Build string `json:"build,omitempty"`
8-
Config string `json:"config"`
9-
Created string `json:"created"`
10-
Owner string `json:"owner"`
11-
Summary string `json:"summary"`
12-
Updated string `json:"updated"`
13-
UUID string `json:"uuid"`
14-
Version int `json:"version"`
5+
App string `json:"app"`
6+
State string `json:"state"`
7+
Build string `json:"build,omitempty"`
8+
Config string `json:"config"`
9+
Created string `json:"created"`
10+
Owner string `json:"owner"`
11+
Summary string `json:"summary"`
12+
Exception string `json:"exception"`
13+
Updated string `json:"updated"`
14+
UUID string `json:"uuid"`
15+
Version int `json:"version"`
1516
}
1617

1718
// ReleaseRollback is the defenition of POST /v2/apps/<app id>/releases/.

0 commit comments

Comments
 (0)