docs-devsite/storage.fullmetadata.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
The full set of object metadata, including read-only properties.
<b>Signature:</b>
export interface FullMetadata extends UploadMetadata
<b>Extends:</b> UploadMetadata
| Property | Type | Description |
|---|---|---|
| bucket | string | The bucket this object is contained in. |
| downloadTokens | string[] | undefined | Tokens to allow access to the download URL. |
| fullPath | string | The full path of this object. |
| generation | string | The object's generation. https://cloud.google.com/storage/docs/metadata#generation-number |
| metageneration | string | The object's metageneration. https://cloud.google.com/storage/docs/metadata#generation-number |
| 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 | <code>StorageReference</code> 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. |
The bucket this object is contained in.
<b>Signature:</b>
bucket: string;
Tokens to allow access to the download URL.
<b>Signature:</b>
downloadTokens: string[] | undefined;
The full path of this object.
<b>Signature:</b>
fullPath: string;
The object's generation. https://cloud.google.com/storage/docs/metadata#generation-number
<b>Signature:</b>
generation: string;
The object's metageneration. https://cloud.google.com/storage/docs/metadata#generation-number
<b>Signature:</b>
metageneration: 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'.
<b>Signature:</b>
name: string;
StorageReference associated with this upload.
<b>Signature:</b>
ref?: StorageReference | undefined;
The size of this object, in bytes.
<b>Signature:</b>
size: number;
A date string representing when this object was created.
<b>Signature:</b>
timeCreated: string;
A date string representing when this object was last updated.
<b>Signature:</b>
updated: string;