ListUsersResult interface

Interface representing the object returned from aBaseAuth.listUsers() operation. Contains the list of users for the current batch and the next page token if available.

Signature:

exportinterfaceListUsersResult

Properties

PropertyTypeDescription
pageTokenstringThe next page token if available. This is needed for the next batch download.
usersUserRecord[]The list ofUserRecord objects for the current downloaded batch.

ListUsersResult.pageToken

The next page token if available. This is needed for the next batch download.

Signature:

pageToken?:string;

ListUsersResult.users

The list ofUserRecord objects for the current downloaded batch.

Signature:

users:UserRecord[];

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2022-07-29 UTC.