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

     1  package ravendb
     2  
     3  import "time"
     4  
     5  type StreamQueryStatistics struct {
     6  	IndexName      string    `json:"IndexName"`
     7  	IsStale        bool      `json:"IsStale"`
     8  	IndexTimestamp time.Time `json:"IndexTimestamp"`
     9  	TotalResults   int       `json:"TotalResults"`
    10  	ResultEtag     int64     `json:"ResultEtag"`
    11  }