From 3820d4dae69a84494c6fb21f0003fd6f686c67e2 Mon Sep 17 00:00:00 2001 From: Maksym Savchenko Date: Fri, 20 Jul 2018 15:26:26 +0300 Subject: [PATCH] Added Percent to Progress struct --- issue.go | 1 + 1 file changed, 1 insertion(+) diff --git a/issue.go b/issue.go index 508f33e..6bee158 100644 --- a/issue.go +++ b/issue.go @@ -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.