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

     1  package ravendb
     2  
     3  // AttachmentName represents infor about an attachment
     4  type AttachmentName struct {
     5  	Name        string `json:"Name"`
     6  	Hash        string `json:"Hash"`
     7  	ContentType string `json:"ContentType"`
     8  	Size        int64  `json:"Size"`
     9  }