[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-01 UTC."],[],[],null,["# FullMetadata interface\n\nThe full set of object metadata, including read-only properties.\n\n**Signature:** \n\n export interface FullMetadata extends UploadMetadata \n\n**Extends:** [UploadMetadata](./storage.uploadmetadata.md#uploadmetadata_interface)\n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [bucket](./storage.fullmetadata.md#fullmetadatabucket) | string | The bucket this object is contained in. |\n| [downloadTokens](./storage.fullmetadata.md#fullmetadatadownloadtokens) | string\\[\\] \\| undefined | Tokens to allow access to the download URL. |\n| [fullPath](./storage.fullmetadata.md#fullmetadatafullpath) | string | The full path of this object. |\n| [generation](./storage.fullmetadata.md#fullmetadatageneration) | string | The object's generation. \u003chttps://cloud.google.com/storage/docs/metadata#generation-number\u003e |\n| [metageneration](./storage.fullmetadata.md#fullmetadatametageneration) | string | The object's metageneration. \u003chttps://cloud.google.com/storage/docs/metadata#generation-number\u003e |\n| [name](./storage.fullmetadata.md#fullmetadataname) | 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'. |\n| [ref](./storage.fullmetadata.md#fullmetadataref) | [StorageReference](./storage.storagereference.md#storagereference_interface) \\| undefined | `StorageReference` associated with this upload. |\n| [size](./storage.fullmetadata.md#fullmetadatasize) | number | The size of this object, in bytes. |\n| [timeCreated](./storage.fullmetadata.md#fullmetadatatimecreated) | string | A date string representing when this object was created. |\n| [updated](./storage.fullmetadata.md#fullmetadataupdated) | string | A date string representing when this object was last updated. |\n\nFullMetadata.bucket\n-------------------\n\nThe bucket this object is contained in.\n\n**Signature:** \n\n bucket: string;\n\nFullMetadata.downloadTokens\n---------------------------\n\nTokens to allow access to the download URL.\n\n**Signature:** \n\n downloadTokens: string[] | undefined;\n\nFullMetadata.fullPath\n---------------------\n\nThe full path of this object.\n\n**Signature:** \n\n fullPath: string;\n\nFullMetadata.generation\n-----------------------\n\nThe object's generation. \u003chttps://cloud.google.com/storage/docs/metadata#generation-number\u003e\n\n**Signature:** \n\n generation: string;\n\nFullMetadata.metageneration\n---------------------------\n\nThe object's metageneration. \u003chttps://cloud.google.com/storage/docs/metadata#generation-number\u003e\n\n**Signature:** \n\n metageneration: string;\n\nFullMetadata.name\n-----------------\n\nThe 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'.\n\n**Signature:** \n\n name: string;\n\nFullMetadata.ref\n----------------\n\n`StorageReference` associated with this upload.\n\n**Signature:** \n\n ref?: StorageReference | undefined;\n\nFullMetadata.size\n-----------------\n\nThe size of this object, in bytes.\n\n**Signature:** \n\n size: number;\n\nFullMetadata.timeCreated\n------------------------\n\nA date string representing when this object was created.\n\n**Signature:** \n\n timeCreated: string;\n\nFullMetadata.updated\n--------------------\n\nA date string representing when this object was last updated.\n\n**Signature:** \n\n updated: string;"]]