Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-12-09 16:28:59 +00:00
parent c578c665fb
commit fbb3b8b37f
22 changed files with 999 additions and 997 deletions

View File

@@ -92,9 +92,9 @@ type DeleteResponse struct {
type HeadObject struct {
// when was this created
Created int64 `json:"created,string"`
Created string `json:"created"`
// when was this last modified
Modified int64 `json:"modified,string"`
Modified string `json:"modified"`
Name string `json:"name"`
// URL to access the object if it is public
Url string `json:"url"`
@@ -112,10 +112,12 @@ type HeadResponse struct {
}
type ListObject struct {
Created string `json:"created"`
// when was this last modified
Modified int64 `json:"modified,string"`
Name string `json:"name"`
Url string `json:"url"`
Modified string `json:"modified"`
Name string `json:"name"`
Url string `json:"url"`
Visibility string `json:"visibility"`
}
type ListRequest struct {