Represents the result of the BaseAuth.getUsers() API.
Signature:
export interface GetUsersResult
Properties
Property | Type | Description |
---|---|---|
notFound | UserIdentifier[] | Set of identifiers that were requested, but not found. |
users | UserRecord[] | Set of user records, corresponding to the set of users that were requested. Only users that were found are listed here. The result set is unordered. |
GetUsersResult.notFound
Set of identifiers that were requested, but not found.
Signature:
notFound: UserIdentifier[];
GetUsersResult.users
Set of user records, corresponding to the set of users that were requested. Only users that were found are listed here. The result set is unordered.
Signature:
users: UserRecord[];