Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type File ¶
type File struct { // Unique identifier to the file ID string `json:"id"` // File name Name string `json:"name"` // File path Path string `json:"path"` // File owner User int `json:"user"` // Content type FileType string `json:"fileType"` // Size in bytes Size int `json:"size"` // Creation date CreatedAt time.Time `json:"createdAt"` // Last update date UpdatedAt time.Time `json:"updatedAt"` // URL to download the file DownloadURL string `json:"downloadURL"` }
Click to show internal directories.
Click to hide internal directories.