response.go 302 B

12345678910111213141516
  1. package osm_sdk
  2. type (
  3. MetaData struct {
  4. FileName string `json:"fileName"`
  5. FileType string `json:"fileType"`
  6. SizeStr string `json:"size"`
  7. Size int64 `json:"-"`
  8. ContentType string `json:"contentType"`
  9. }
  10. UrlWithMetaData struct {
  11. Url string `json:"url"`
  12. MetaData
  13. }
  14. )