1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-04-11 11:32:00 +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"` StartAt int `json:"startAt" structs:"startAt"`
MaxResults int `json:"maxResults" structs:"maxResults"` MaxResults int `json:"maxResults" structs:"maxResults"`
Total int `json:"total" structs:"total"` 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 // GetQueryOptions specifies the optional parameters for the Get Issue methods