github.com/altipla-consulting/ravendb-go-client@v0.1.3/terms_query_result.go (about)

     1  package ravendb
     2  
     3  // TermsQueryResult represents results of terms query
     4  type TermsQueryResult struct {
     5  	Terms      []string `json:"Terms"`
     6  	ResultEtag int64    `json:"ResultEtag"`
     7  	IndexName  string   `json:"IndexName"`
     8  }