GetUsersResult interface

Represents the result of the BaseAuth.getUsers() API.

Signature:

exportinterfaceGetUsersResult

Properties

PropertyTypeDescription
notFoundUserIdentifier[]Set of identifiers that were requested, but not found.
usersUserRecord[]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[];