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

     1  package ravendb
     2  
     3  import (
     4  	"io"
     5  	"net/http"
     6  )
     7  
     8  type StreamResultResponse struct {
     9  	Response *http.Response `json:"Response"`
    10  	Stream   io.Reader      `json:"Stream"`
    11  }