mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-27 22:39:31 +07:00
19 lines
493 B
Go
19 lines
493 B
Go
package schema
|
|
|
|
import "time"
|
|
|
|
type BrowseObjectResult struct {
|
|
Prefixes []string `json:"prefixes"`
|
|
Objects []BrowserObject `json:"objects"`
|
|
Prefix string `json:"prefix"`
|
|
NextToken *string `json:"nextToken"`
|
|
}
|
|
|
|
type BrowserObject struct {
|
|
ObjectKey *string `json:"objectKey"`
|
|
LastModified *time.Time `json:"lastModified"`
|
|
Size *int64 `json:"size"`
|
|
ViewUrl string `json:"viewUrl"`
|
|
DownloadUrl string `json:"downloadUrl"`
|
|
}
|