From a888918f5b1d9ef092455479f6b028dd6ef60365 Mon Sep 17 00:00:00 2001 From: Klyahin Aleksey Date: Thu, 18 Mar 2021 17:38:36 +0300 Subject: [PATCH] Description for component --- issue.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/issue.go b/issue.go index b23f437c..3e898d70 100644 --- a/issue.go +++ b/issue.go @@ -268,9 +268,10 @@ type AvatarUrls struct { // Component represents a "component" of a Jira issue. // Components can be user defined in every Jira instance. type Component struct { - Self string `json:"self,omitempty" structs:"self,omitempty"` - ID string `json:"id,omitempty" structs:"id,omitempty"` - Name string `json:"name,omitempty" structs:"name,omitempty"` + Self string `json:"self,omitempty" structs:"self,omitempty"` + ID string `json:"id,omitempty" structs:"id,omitempty"` + Name string `json:"name,omitempty" structs:"name,omitempty"` + Description string `json:"description,omitempty" structs:"description,omitempty"` } // Progress represents the progress of a Jira issue.