DownloadObjectHeaders
Headers returned when downloading object bytes.
| Name | Type | Definition |
|---|---|---|
contentType? | string | MIME type of the downloaded object. |
contentLength? | number | Size of the downloaded object in bytes. |
etag? | string | An entity tag (ETag) is an opaque identifier assigned by the storage service to this specific object version. |
cacheControl? | string | Cache-Control value stored with the object. |
attributes? | StorageAttributes | User-defined object attributes decoded from the response header. |
createdAt? | string | Timestamp when the object was created. |
updatedAt? | string | Timestamp when the object was last updated. |
Example
{ "contentType": "string", "contentLength": 0, "etag": "string", "cacheControl": "string", "attributes": {}, "createdAt": "string", "updatedAt": "string"}