github.com/ravendb/ravendb-go-client@v0.0.0-20240229102137-4474ee7aa0fa/patch_status.go (about)

     1  package ravendb
     2  
     3  type PatchStatus = string
     4  
     5  const (
     6  	PatchStatusDocumentDoesNotExist = "DocumentDoesNotExist"
     7  	PatchStatusCreated              = "Created"
     8  	PatchStatusPatched              = "Patched"
     9  	PatchStatusSkipped              = "Skipped"
    10  	PatchStatusNotModified          = "NotModified"
    11  )