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

NameAndKind

import type { NameAndKind } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Basic metadata about a counter.

interface NameAndKind {
kind?:
| "INVALID"
| "SUM"
| "MAX"
| "MIN"
| "MEAN"
| "OR"
| "AND"
| "SET"
| "DISTRIBUTION"
| "LATEST_VALUE";
name?: string;
}

§Properties

§
kind?: "INVALID" | "SUM" | "MAX" | "MIN" | "MEAN" | "OR" | "AND" | "SET" | "DISTRIBUTION" | "LATEST_VALUE"
[src]

Counter aggregation kind.

§
name?: string
[src]

Name of the counter.