Stay organized with collections
Save and categorize content based on your preferences.
Interface representing the object returned from a BaseAuth.listUsers() operation. Contains the list of users for the current batch and the next page token if available.
[[["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,["# ListUsersResult interface\n\nInterface representing the object returned from a [BaseAuth.listUsers()](./firebase-admin.auth.baseauth.md#baseauthlistusers) operation. Contains the list of users for the current batch and the next page token if available.\n\n**Signature:** \n\n export interface ListUsersResult \n\nProperties\n----------\n\n| Property | Type | Description |\n|--------------------------------------------------------------------------------|------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|\n| [pageToken](./firebase-admin.auth.listusersresult.md#listusersresultpagetoken) | string | The next page token if available. This is needed for the next batch download. |\n| [users](./firebase-admin.auth.listusersresult.md#listusersresultusers) | [UserRecord](./firebase-admin.auth.userrecord.md#userrecord_class)\\[\\] | The list of [UserRecord](./firebase-admin.auth.userrecord.md#userrecord_class) objects for the current downloaded batch. |\n\nListUsersResult.pageToken\n-------------------------\n\nThe next page token if available. This is needed for the next batch download.\n\n**Signature:** \n\n pageToken?: string;\n\nListUsersResult.users\n---------------------\n\nThe list of [UserRecord](./firebase-admin.auth.userrecord.md#userrecord_class) objects for the current downloaded batch.\n\n**Signature:** \n\n users: UserRecord[];"]]