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

     1  package ravendb
     2  
     3  // GetConflictsResult represents result of "get conflict" command
     4  type GetConflictsResult struct {
     5  	ID          string      `json:"Id"`
     6  	Results     []*Conflict `json:"Results"`
     7  	LargestEtag int64       `json:"LargestEtag"`
     8  }
     9  
    10  // Conflict represents conflict
    11  type Conflict struct {
    12  	LastModified Time                   `json:"LastModified"`
    13  	ChangeVector string                 `json:"ChangeVector"`
    14  	Doc          map[string]interface{} `json:"Doc"`
    15  }