ListUsersResult interface

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.

Signature:

export interface ListUsersResult 

Properties

Property Type Description
pageToken string The next page token if available. This is needed for the next batch download.
users UserRecord[] The list of UserRecord 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 of UserRecord objects for the current downloaded batch.

Signature:

users: UserRecord[];