github.com/altipla-consulting/ravendb-go-client@v0.1.3/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  )