[[["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,["# ParsedToken interface\n\nInterface representing a parsed ID token.\n\n**Signature:** \n\n export interface ParsedToken \n\nProperties\n----------\n\n| Property | Type | Description |\n|---------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|\n| [auth_time](./auth.parsedtoken.md#parsedtokenauth_time) | string | Time at which authentication was performed. |\n| [exp](./auth.parsedtoken.md#parsedtokenexp) | string | Expiration time of the token. |\n| [firebase](./auth.parsedtoken.md#parsedtokenfirebase) | { 'sign_in_provider'?: string; 'sign_in_second_factor'?: string; 'identities'?: Record\\\u003cstring, string\\\u003e; } | Firebase specific claims, containing the provider(s) used to authenticate the user. |\n| [iat](./auth.parsedtoken.md#parsedtokeniat) | string | Issuance time of the token. |\n| [sub](./auth.parsedtoken.md#parsedtokensub) | string | UID of the user. |\n\nParsedToken.auth_time\n---------------------\n\nTime at which authentication was performed.\n\n**Signature:** \n\n 'auth_time'?: string;\n\nParsedToken.exp\n---------------\n\nExpiration time of the token.\n\n**Signature:** \n\n 'exp'?: string;\n\nParsedToken.firebase\n--------------------\n\nFirebase specific claims, containing the provider(s) used to authenticate the user.\n\n**Signature:** \n\n 'firebase'?: {\n 'sign_in_provider'?: string;\n 'sign_in_second_factor'?: string;\n 'identities'?: Record\u003cstring, string\u003e;\n };\n\nParsedToken.iat\n---------------\n\nIssuance time of the token.\n\n**Signature:** \n\n 'iat'?: string;\n\nParsedToken.sub\n---------------\n\nUID of the user.\n\n**Signature:** \n\n 'sub'?: string;"]]