A list of FirebaseArrayIndexError instances describing the errors that were encountered during the deletion. Length of this list is equal to the return value of DeleteUsersResult.failureCount.
The number of users that were deleted successfully (possibly zero). Users that did not exist prior to calling deleteUsers() are considered to be successfully deleted.
DeleteUsersResult.errors
A list of FirebaseArrayIndexError instances describing the errors that were encountered during the deletion. Length of this list is equal to the return value of DeleteUsersResult.failureCount.
Signature:
errors:FirebaseArrayIndexError[];
DeleteUsersResult.failureCount
The number of user records that failed to be deleted (possibly zero).
Signature:
failureCount:number;
DeleteUsersResult.successCount
The number of users that were deleted successfully (possibly zero). Users that did not exist prior to calling deleteUsers() are considered to be successfully deleted.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-07-29 UTC."],[],[],null,["# DeleteUsersResult interface\n\nRepresents the result of the [BaseAuth.deleteUsers()](./firebase-admin.auth.baseauth.md#baseauthdeleteusers). API.\n\n**Signature:** \n\n export interface DeleteUsersResult \n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------------------------|-----------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [errors](./firebase-admin.auth.deleteusersresult.md#deleteusersresulterrors) | FirebaseArrayIndexError\\[\\] | A list of `FirebaseArrayIndexError` instances describing the errors that were encountered during the deletion. Length of this list is equal to the return value of [DeleteUsersResult.failureCount](./firebase-admin.auth.deleteusersresult.md#deleteusersresultfailurecount). |\n| [failureCount](./firebase-admin.auth.deleteusersresult.md#deleteusersresultfailurecount) | number | The number of user records that failed to be deleted (possibly zero). |\n| [successCount](./firebase-admin.auth.deleteusersresult.md#deleteusersresultsuccesscount) | number | The number of users that were deleted successfully (possibly zero). Users that did not exist prior to calling `deleteUsers()` are considered to be successfully deleted. |\n\nDeleteUsersResult.errors\n------------------------\n\nA list of `FirebaseArrayIndexError` instances describing the errors that were encountered during the deletion. Length of this list is equal to the return value of [DeleteUsersResult.failureCount](./firebase-admin.auth.deleteusersresult.md#deleteusersresultfailurecount).\n\n**Signature:** \n\n errors: FirebaseArrayIndexError[];\n\nDeleteUsersResult.failureCount\n------------------------------\n\nThe number of user records that failed to be deleted (possibly zero).\n\n**Signature:** \n\n failureCount: number;\n\nDeleteUsersResult.successCount\n------------------------------\n\nThe number of users that were deleted successfully (possibly zero). Users that did not exist prior to calling `deleteUsers()` are considered to be successfully deleted.\n\n**Signature:** \n\n successCount: number;"]]