response.go 248 B

123456789101112131415
  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. }
  9. UrlWithMetaData struct {
  10. Url string `json:"url"`
  11. MetaData
  12. }
  13. )