(info *objectstorage.GetObjectResponse)
| 117 | } |
| 118 | |
| 119 | func (o *Object) decodeMetaDataObject(info *objectstorage.GetObjectResponse) (err error) { |
| 120 | return o.setMetaData( |
| 121 | info.ContentLength, |
| 122 | info.ContentMd5, |
| 123 | info.ContentType, |
| 124 | info.LastModified, |
| 125 | info.StorageTier, |
| 126 | info.OpcMeta) |
| 127 | } |
| 128 | |
| 129 | func (o *Object) setMetaData( |
| 130 | contentLength *int64, |