Whether to skip nested properties that are set to undefined during object serialization. If set to true, these properties are skipped and not written to Firestore. If set to false or omitted, the SDK throws an exception when it encounters properties of type undefined.
Whether to skip nested properties that are set to undefined during object serialization. If set to true, these properties are skipped and not written to Firestore. If set to false or omitted, the SDK throws an exception when it encounters properties of type undefined.
[[["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,["# Settings interface\n\nSpecifies custom configurations for your Cloud Firestore instance. You must set these before invoking any other methods.\n\n**Signature:** \n\n export declare interface Settings \n\nProperties\n----------\n\n| Property | Type | Description |\n|---------------------------------------------------------------------------------------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [host](./firestore_lite.settings.md#settingshost) | string | The hostname to connect to. |\n| [ignoreUndefinedProperties](./firestore_lite.settings.md#settingsignoreundefinedproperties) | boolean | Whether to skip nested properties that are set to `undefined` during object serialization. If set to `true`, these properties are skipped and not written to Firestore. If set to `false` or omitted, the SDK throws an exception when it encounters properties of type `undefined`. |\n| [ssl](./firestore_lite.settings.md#settingsssl) | boolean | Whether to use SSL when connecting. |\n\nSettings.host\n-------------\n\nThe hostname to connect to.\n\n**Signature:** \n\n host?: string;\n\nSettings.ignoreUndefinedProperties\n----------------------------------\n\nWhether to skip nested properties that are set to `undefined` during object serialization. If set to `true`, these properties are skipped and not written to Firestore. If set to `false` or omitted, the SDK throws an exception when it encounters properties of type `undefined`.\n\n**Signature:** \n\n ignoreUndefinedProperties?: boolean;\n\nSettings.ssl\n------------\n\nWhether to use SSL when connecting.\n\n**Signature:** \n\n ssl?: boolean;"]]