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

     1  package ravendb
     2  
     3  // Size describes size of entity on disk
     4  type Size struct {
     5  	SizeInBytes int64  `json:"SizeInBytes"`
     6  	HumaneSize  string `json:"HumaneSize"`
     7  }