[[["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 2022-07-22 UTC."],[],[],null,["# SettableMetadata interface\n\nObject metadata that can be set at any time.\n\n**Signature:** \n\n export interface SettableMetadata \n\nProperties\n----------\n\n| Property | Type | Description |\n|----------------------------------------------------------------------------------------|-------------------------------------------|----------------------------------------------------------------|\n| [cacheControl](./storage.settablemetadata.md#settablemetadatacachecontrol) | string \\| undefined | Served as the 'Cache-Control' header on object download. |\n| [contentDisposition](./storage.settablemetadata.md#settablemetadatacontentdisposition) | string \\| undefined | Served as the 'Content-Disposition' header on object download. |\n| [contentEncoding](./storage.settablemetadata.md#settablemetadatacontentencoding) | string \\| undefined | Served as the 'Content-Encoding' header on object download. |\n| [contentLanguage](./storage.settablemetadata.md#settablemetadatacontentlanguage) | string \\| undefined | Served as the 'Content-Language' header on object download. |\n| [contentType](./storage.settablemetadata.md#settablemetadatacontenttype) | string \\| undefined | Served as the 'Content-Type' header on object download. |\n| [customMetadata](./storage.settablemetadata.md#settablemetadatacustommetadata) | { \\[key: string\\]: string; } \\| undefined | Additional user-defined custom metadata. |\n\nSettableMetadata.cacheControl\n-----------------------------\n\nServed as the 'Cache-Control' header on object download.\n\n**Signature:** \n\n cacheControl?: string | undefined;\n\nSettableMetadata.contentDisposition\n-----------------------------------\n\nServed as the 'Content-Disposition' header on object download.\n\n**Signature:** \n\n contentDisposition?: string | undefined;\n\nSettableMetadata.contentEncoding\n--------------------------------\n\nServed as the 'Content-Encoding' header on object download.\n\n**Signature:** \n\n contentEncoding?: string | undefined;\n\nSettableMetadata.contentLanguage\n--------------------------------\n\nServed as the 'Content-Language' header on object download.\n\n**Signature:** \n\n contentLanguage?: string | undefined;\n\nSettableMetadata.contentType\n----------------------------\n\nServed as the 'Content-Type' header on object download.\n\n**Signature:** \n\n contentType?: string | undefined;\n\nSettableMetadata.customMetadata\n-------------------------------\n\nAdditional user-defined custom metadata.\n\n**Signature:** \n\n customMetadata?: {\n [key: string]: string;\n } | undefined;"]]