mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-02 10:21:27 -05:00
* add tags to search service resource add tags getTags, AssignTags and UnassignTags endpoint to graph use and prefer search event spaceOwner over executant add tags to search report response update libre graph api update reva Co-authored-by: David Christofas <dchristofas@owncloud.com>
14 lines
253 B
Go
14 lines
253 B
Go
package content
|
|
|
|
// Document wraps all resource meta fields,
|
|
// it is used as a content extraction result.
|
|
type Document struct {
|
|
Title string
|
|
Name string
|
|
Content string
|
|
Size uint64
|
|
Mtime string
|
|
MimeType string
|
|
Tags []string
|
|
}
|