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

     1  package ravendb
     2  
     3  // HiLoResult is a result of HiLoResult command
     4  type HiLoResult struct {
     5  	Prefix      string `json:"Prefix"`
     6  	Low         int64  `json:"Low"`
     7  	High        int64  `json:"High"`
     8  	LastSize    int64  `json:"LastSize"`
     9  	ServerTag   string `json:"ServerTag"`
    10  	LastRangeAt *Time  `json:"LastRangeAt"`
    11  }