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

Aggregate

import type { Aggregate } from "https://googleapis.deno.dev/v1/saasservicemgmt:v1beta1.ts";

Represents the aggregation of a set of population of like records by a certain group. For example, a collection of unit counts can be aggregated and grouped by their state.

interface Aggregate {
count?: number;
group?: string;
}

§Properties

§
count?: number
[src]

Required. Number of records in the group.

§
group?: string
[src]

Required. Group by which to aggregate.