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

AggregationInfo

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

Represents the aggregation level and interval for pricing of a single SKU.

interface AggregationInfo {
aggregationCount?: number;
aggregationInterval?: "AGGREGATION_INTERVAL_UNSPECIFIED" | "DAILY" | "MONTHLY";
aggregationLevel?: "AGGREGATION_LEVEL_UNSPECIFIED" | "ACCOUNT" | "PROJECT";
}

§Properties

§
aggregationCount?: number
[src]

The number of intervals to aggregate over. Example: If aggregation_level is "DAILY" and aggregation_count is 14, aggregation will be over 14 days.

§
aggregationInterval?: "AGGREGATION_INTERVAL_UNSPECIFIED" | "DAILY" | "MONTHLY"
[src]
§
aggregationLevel?: "AGGREGATION_LEVEL_UNSPECIFIED" | "ACCOUNT" | "PROJECT"
[src]