1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-31 21:55:08 +02:00

Merge pull request #303 from kernelfail/master

fix RemoteLinkStatus
This commit is contained in:
Matt Finkel 2020-10-24 22:16:27 -05:00 committed by GitHub
commit a39d6d2037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.