Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GroupsCountResult

import type { GroupsCountResult } from "https://googleapis.deno.dev/v1/vault:v1.ts";

Groups specific count metrics.

interface GroupsCountResult {
accountCountErrors?: AccountCountError[];
accountCounts?: AccountCount[];
matchingAccountsCount?: bigint;
nonQueryableAccounts?: string[];
queriedAccountsCount?: bigint;
}

§Properties

§
accountCountErrors?: AccountCountError[]
[src]

Error occurred when querying these accounts.

§
accountCounts?: AccountCount[]
[src]

Subtotal count per matching account that have more than zero messages.

§
matchingAccountsCount?: bigint
[src]

Total number of accounts that can be queried and have more than zero messages.

§
nonQueryableAccounts?: string[]
[src]

When DataScope is HELD_DATA, these accounts in the request are not queried because they are not on hold. For other data scope, this field is not set.

§
queriedAccountsCount?: bigint
[src]

Total number of accounts involved in this count operation.