package osm_sdk type ( MetaData struct { FileName string `json:"fileName"` FileType string `json:"fileType"` SizeStr string `json:"size"` Size int64 `json:"-"` ContentType string `json:"contentType"` } UrlWithMetaData struct { Url string `json:"url"` MetaData } )