[[["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,["# UserInfo interface\n\nUser profile information, visible only to the Firebase project's apps.\n\n**Signature:** \n\n export interface UserInfo \n\nProperties\n----------\n\n| Property | Type | Description |\n|-------------------------------------------------------|----------------|-------------------------------------------------------------------------------------------|\n| [displayName](./auth.userinfo.md#userinfodisplayname) | string \\| null | The display name of the user. |\n| [email](./auth.userinfo.md#userinfoemail) | string \\| null | The email of the user. |\n| [phoneNumber](./auth.userinfo.md#userinfophonenumber) | string \\| null | The phone number normalized based on the E.164 standard (e.g. +16505550101) for the user. |\n| [photoURL](./auth.userinfo.md#userinfophotourl) | string \\| null | The profile photo URL of the user. |\n| [providerId](./auth.userinfo.md#userinfoproviderid) | string | The provider used to authenticate the user. |\n| [uid](./auth.userinfo.md#userinfouid) | string | The user's unique ID, scoped to the project. |\n\nUserInfo.displayName\n--------------------\n\nThe display name of the user.\n\n**Signature:** \n\n readonly displayName: string | null;\n\nUserInfo.email\n--------------\n\nThe email of the user.\n\n**Signature:** \n\n readonly email: string | null;\n\nUserInfo.phoneNumber\n--------------------\n\nThe phone number normalized based on the E.164 standard (e.g. +16505550101) for the user.\n\nThis is null if the user has no phone credential linked to the account.\n\n**Signature:** \n\n readonly phoneNumber: string | null;\n\nUserInfo.photoURL\n-----------------\n\nThe profile photo URL of the user.\n\n**Signature:** \n\n readonly photoURL: string | null;\n\nUserInfo.providerId\n-------------------\n\nThe provider used to authenticate the user.\n\n**Signature:** \n\n readonly providerId: string;\n\nUserInfo.uid\n------------\n\nThe user's unique ID, scoped to the project.\n\n**Signature:** \n\n readonly uid: string;"]]