getTenantUsage method

Future<TenantUsageResponse> getTenantUsage()
inherited

Gets the current tenant's usage statistics.

Returns the number of nodes (items, revisions, etc.) used and the tenant's limit. Useful for quota monitoring.

Implementation

Future<TenantUsageResponse> getTenantUsage() async {
  final request = GetTenantUsageRequest();
  return stub.getTenantUsage(request, options: callOptions);
}