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

     1  package ravendb
     2  
     3  // PatchResult describes server results of patch command
     4  type PatchResult struct {
     5  	Status           PatchStatus            `json:"Status"`
     6  	ModifiedDocument map[string]interface{} `json:"ModifiedDocument"`
     7  	OriginalDocument map[string]interface{} `json:"OriginalDocument"`
     8  	Debug            map[string]interface{} `json:"Debug"`
     9  
    10  	// TODO: can this ever be null? If not, use string for type
    11  	ChangeVector *string `json:"ChangeVector"`
    12  	Collection   string  `json:"Collection"`
    13  }