[[["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-29 UTC."],[],[],null,["# UserInfo class\n\nRepresents a user's info from a third-party identity provider such as Google or Facebook.\n\n**Signature:** \n\n export declare class UserInfo \n\nProperties\n----------\n\n| Property | Modifiers | Type | Description |\n|----------------------------------------------------------------------|-----------|--------|-----------------------------------------------------------------------------|\n| [displayName](./firebase-admin.auth.userinfo.md#userinfodisplayname) | | string | The display name for the linked provider. |\n| [email](./firebase-admin.auth.userinfo.md#userinfoemail) | | string | The email for the linked provider. |\n| [phoneNumber](./firebase-admin.auth.userinfo.md#userinfophonenumber) | | string | The phone number for the linked provider. |\n| [photoURL](./firebase-admin.auth.userinfo.md#userinfophotourl) | | string | The photo URL for the linked provider. |\n| [providerId](./firebase-admin.auth.userinfo.md#userinfoproviderid) | | string | The linked provider ID (for example, \"google.com\" for the Google provider). |\n| [uid](./firebase-admin.auth.userinfo.md#userinfouid) | | string | The user identifier for the linked provider. |\n\nMethods\n-------\n\n| Method | Modifiers | Description |\n|--------------------------------------------------------------|-----------|------------------------------------------------------------|\n| [toJSON()](./firebase-admin.auth.userinfo.md#userinfotojson) | | Returns a JSON-serializable representation of this object. |\n\nUserInfo.displayName\n--------------------\n\nThe display name for the linked provider.\n\n**Signature:** \n\n readonly displayName: string;\n\nUserInfo.email\n--------------\n\nThe email for the linked provider.\n\n**Signature:** \n\n readonly email: string;\n\nUserInfo.phoneNumber\n--------------------\n\nThe phone number for the linked provider.\n\n**Signature:** \n\n readonly phoneNumber: string;\n\nUserInfo.photoURL\n-----------------\n\nThe photo URL for the linked provider.\n\n**Signature:** \n\n readonly photoURL: string;\n\nUserInfo.providerId\n-------------------\n\nThe linked provider ID (for example, \"google.com\" for the Google provider).\n\n**Signature:** \n\n readonly providerId: string;\n\nUserInfo.uid\n------------\n\nThe user identifier for the linked provider.\n\n**Signature:** \n\n readonly uid: string;\n\nUserInfo.toJSON()\n-----------------\n\nReturns a JSON-serializable representation of this object.\n\n**Signature:** \n\n toJSON(): object;\n\n**Returns:**\n\nobject\n\nA JSON-serializable representation of this object."]]