| java.lang.Object | |
| ↳ | com.google.firebase.auth.DeleteUsersResult |
Represents the result of the deleteUsersAsync(List) API.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| List<ErrorInfo> |
getErrors()
A list of
ErrorInfo instances describing the errors that were encountered during
the deletion. | ||||||||||
| int |
getFailureCount()
Returns the number of users that failed to be deleted (possibly zero).
| ||||||||||
| int |
getSuccessCount()
Returns the number of users that were deleted successfully (possibly zero).
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
A list of ErrorInfo instances describing the errors that were encountered during
the deletion. Length of this list is equal to the return value of
getFailureCount().
Returns the number of users that failed to be deleted (possibly zero).
Returns the number of users that were deleted successfully (possibly zero). Users that did not
exist prior to calling deleteUsersAsync(List) are considered to be
successfully deleted.