github.com/ravendb/ravendb-go-client@v0.0.0-20240229102137-4474ee7aa0fa/index_priority.go (about)

     1  package ravendb
     2  
     3  type IndexPriority = string
     4  
     5  const (
     6  	IndexPriorityLow    = "Low"
     7  	IndexPriorityNormal = "Normal"
     8  	IndexPriorityHigh   = "High"
     9  )