18 lines
443 B
Go
Raw Normal View History

2024-08-18 22:57:08 +07:00
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"`
Url string `json:"url"`
2024-08-18 22:57:08 +07:00
}