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

     1  package ravendb
     2  
     3  // PutIndexResult represents result of put index command
     4  type PutIndexResult struct {
     5  	// Note: don't know how Java does it, but this is sent
     6  	// as Index in JSON responses from the server
     7  	IndexName string `json:"Index"`
     8  }