1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2024-12-02 08:51:43 +02:00

Added Percent to Progress struct

This commit is contained in:
Maksym Savchenko 2018-07-20 15:26:26 +03:00
parent c621b60752
commit 3820d4dae6

View File

@ -274,6 +274,7 @@ type Status struct {
type Progress struct {
Progress int `json:"progress" structs:"progress"`
Total int `json:"total" structs:"total"`
Percent int `json:"percent" structs:"percent"`
}
// Parent represents the parent of a JIRA issue, to be used with subtask issue types.