1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-07-17 01:12:24 +02:00

bug(IssueSearch) Fix: Search Result was not parsing Names

This commit is contained in:
Chhekur
2021-08-27 13:53:42 +05:30
parent a854ebf395
commit 852af840d2

View File

@ -517,6 +517,7 @@ type searchResult struct {
StartAt int `json:"startAt" structs:"startAt"`
MaxResults int `json:"maxResults" structs:"maxResults"`
Total int `json:"total" structs:"total"`
Names map[string]string `json:"names,omitempty" structs:"names,omitempty"`
}
// GetQueryOptions specifies the optional parameters for the Get Issue methods