1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2024-11-28 08:39:03 +02:00

fix RemoteLinkStatus

This commit is contained in:
kernelfail 2020-06-18 23:13:01 +03:00
parent de60bbed3f
commit 607c9e4b9a

View File

@ -585,8 +585,8 @@ type RemoteLinkIcon struct {
// RemoteLinkStatus if the link is a resolvable object (issue, epic) - the structure represent its status
type RemoteLinkStatus struct {
Resolved bool
Icon *RemoteLinkIcon
Resolved bool `json:"resolved,omitempty" structs:"resolved,omitempty"`
Icon *RemoteLinkIcon `json:"icon,omitempty" structs:"icon,omitempty"`
}
// GetWithContext returns a full representation of the issue for the given issue key.