Merge pull request #38 from johnkjellberg/highlight2

Add "Highlight" field to "Hit" structure.
This commit is contained in:
Jérôme Renard 2015-10-31 14:03:55 +01:00
commit 8fd7c39685

View File

@ -145,12 +145,13 @@ type Shard struct {
// Represent a hit returned by a search
type Hit struct {
Index string `json:"_index"`
Type string `json:"_type"`
Id string `json:"_id"`
Score float64 `json:"_score"`
Source map[string]interface{} `json:"_source"`
Fields map[string]interface{} `json:"fields"`
Index string `json:"_index"`
Type string `json:"_type"`
Id string `json:"_id"`
Score float64 `json:"_score"`
Source map[string]interface{} `json:"_source"`
Highlight map[string]interface{} `json:"highlight"`
Fields map[string]interface{} `json:"fields"`
}
// Represent the hits structure as returned by elasticsearch