Home > @firebase/storage > FullMetadata
FullMetadata interface
The full set of object metadata, including read-only properties.
Signature:
export interface FullMetadata extends UploadMetadata
Extends: UploadMetadata
Properties
| Property | Type | Description |
|---|---|---|
| bucket | string | The bucket this object is contained in. |
| downloadTokens | string[] | undefined | Tokens to allow access to the downloatd URL. |
| fullPath | string | The full path of this object. |
| generation | string | The object's generation. https://cloud.google.com/storage/docs/generations-preconditions |
| metageneration | string | The object's metageneration. https://cloud.google.com/storage/docs/generations-preconditions |
| name | string | The short name of this object, which is the last component of the full path. For example, if fullPath is 'full/path/image.png', name is 'image.png'. |
| ref? | StorageReference | undefined | (Optional) StorageReference associated with this upload. |
| size | number | The size of this object, in bytes. |
| timeCreated | string | A date string representing when this object was created. |
| updated | string | A date string representing when this object was last updated. |