Versions in this module Expand all Collapse all v0 v0.0.26 Nov 26, 2025 Changes in this version + const DirectoryType + const DocumentType + type Client struct + BaseURL *url.URL + UserAgent string + func NewClient(httpClient *http.Client) *Client + func (c *Client) CreateFolder(name string, parent string) (string, error) + func (c *Client) Delete(uuid string) error + func (c *Client) Download(uuid string, w io.Writer) error + func (c *Client) Get(uuid string) (Document, error) + func (c *Client) List() ([]Document, error) + func (c *Client) Metadata(doc Document) error + func (c *Client) Upload(uuid string, name string, r io.Reader) error + func (c *Client) UploadDocument(doc Document, r io.Reader) error + type Document struct + Bookmarked bool + CurrentPage int + ID string + Name string + Parent string + Type string + Version int + func (d Document) String() string