mirror of
				https://github.com/khairul169/garage-webui.git
				synced 2025-10-30 22:59:31 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			443 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			443 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"`
 | |
| 	Url          string     `json:"url"`
 | |
| }
 |