mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-28 06:49:32 +07:00
17 lines
405 B
Go
17 lines
405 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"`
|
|
}
|