suggester_context.go 356 B

1234567891011
  1. // Copyright 2012-2015 Oliver Eilhard. All rights reserved.
  2. // Use of this source code is governed by a MIT-license.
  3. // See http://olivere.mit-license.org/license.txt for details.
  4. package elastic
  5. // SuggesterContextQuery is used to define context information within
  6. // a suggestion request.
  7. type SuggesterContextQuery interface {
  8. Source() interface{}
  9. }