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

     1  package ravendb
     2  
     3  // DatabasePutResult describes server response for e.g. CreateDatabaseCommand
     4  type DatabasePutResult struct {
     5  	RaftCommandIndex int64    `json:"RaftCommandIndex"`
     6  	Name             string   `json:"Name"`
     7  	DatabaseTopology Topology `json:"Topology"`
     8  	NodesAddedTo     []string `json:"NodesAddedTo"`
     9  }