Stay organized with collections
Save and categorize content based on your preferences.
Interface representing the object returned from a TenantManager.listTenants() operation. Contains the list of tenants for the current batch and the next page token if available.
[[["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,["# ListTenantsResult interface\n\nInterface representing the object returned from a [TenantManager.listTenants()](./firebase-admin.auth.tenantmanager.md#tenantmanagerlisttenants) operation. Contains the list of tenants for the current batch and the next page token if available.\n\n**Signature:** \n\n export interface ListTenantsResult \n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------------------|------------------------------------------------------------|------------------------------------------------------------------------------------------------------|\n| [pageToken](./firebase-admin.auth.listtenantsresult.md#listtenantsresultpagetoken) | string | The next page token if available. This is needed for the next batch download. |\n| [tenants](./firebase-admin.auth.listtenantsresult.md#listtenantsresulttenants) | [Tenant](./firebase-admin.auth.tenant.md#tenant_class)\\[\\] | The list of [Tenant](./firebase-admin.auth.tenant.md#tenant_class) objects for the downloaded batch. |\n\nListTenantsResult.pageToken\n---------------------------\n\nThe next page token if available. This is needed for the next batch download.\n\n**Signature:** \n\n pageToken?: string;\n\nListTenantsResult.tenants\n-------------------------\n\nThe list of [Tenant](./firebase-admin.auth.tenant.md#tenant_class) objects for the downloaded batch.\n\n**Signature:** \n\n tenants: Tenant[];"]]