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.
Signature:
export interface ListTenantsResult
Properties
Property | Type | Description |
---|---|---|
pageToken | string | The next page token if available. This is needed for the next batch download. |
tenants | Tenant[] | The list of Tenant objects for the downloaded batch. |
ListTenantsResult.pageToken
The next page token if available. This is needed for the next batch download.
Signature:
pageToken?: string;
ListTenantsResult.tenants
The list of Tenant objects for the downloaded batch.
Signature:
tenants: Tenant[];